mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Fix silly typo
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
ccc9d80015
commit
d9b39efeb7
2 changed files with 6 additions and 1 deletions
|
@ -1073,3 +1073,8 @@ extern "C" void subsurface_mkdir(const char *dir)
|
|||
if (!directory.mkpath(QString(dir)))
|
||||
qDebug() << "failed to create path" << dir;
|
||||
}
|
||||
|
||||
extern "C" void parse_display_units(char *line)
|
||||
{
|
||||
qDebug() << line;
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ WindowTitleUpdate *WindowTitleUpdate::m_instance = NULL;
|
|||
|
||||
WindowTitleUpdate::WindowTitleUpdate(QObject *parent) : QObject(parent)
|
||||
{
|
||||
Q_ASSERT_X(m_Instance == NULL, "WindowTitleUpdate", "WindowTitleUpdate recreated!");
|
||||
Q_ASSERT_X(m__nstance == NULL, "WindowTitleUpdate", "WindowTitleUpdate recreated!");
|
||||
|
||||
m_instance = this;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue