Fix silly typo

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-06-16 20:30:06 -07:00
parent ccc9d80015
commit d9b39efeb7
2 changed files with 6 additions and 1 deletions

View file

@ -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;
}

View file

@ -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;
}