diff options
-rw-r--r-- | qthelper.cpp | 5 | ||||
-rw-r--r-- | windowtitleupdate.cpp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/qthelper.cpp b/qthelper.cpp index 20e4e2c1a..a707ac5b5 100644 --- a/qthelper.cpp +++ b/qthelper.cpp @@ -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; +} diff --git a/windowtitleupdate.cpp b/windowtitleupdate.cpp index a22fee779..e6779fa83 100644 --- a/windowtitleupdate.cpp +++ b/windowtitleupdate.cpp @@ -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; } |