summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-06-16 20:30:06 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-06-16 20:30:06 -0700
commitd9b39efeb7998392524ff2197683aef50246c6ab (patch)
tree6426b44663bb5e5012c40f5300f3db7615503af8
parentccc9d800153ad11d8a2b54dc75fe8aefb5650dd3 (diff)
downloadsubsurface-d9b39efeb7998392524ff2197683aef50246c6ab.tar.gz
Fix silly typo
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--qthelper.cpp5
-rw-r--r--windowtitleupdate.cpp2
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;
}