summaryrefslogtreecommitdiffstats
path: root/subsurface-core
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2016-01-11 06:09:27 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-01-11 06:09:27 -0800
commit3c1a1114042aab6fe62e0f09a93090798ff33e3a (patch)
tree00ec316438f3885a2ba2914bd556de8a566e1d13 /subsurface-core
parent602d1227a7b7d9c9532e55c8ab3a12fedef51580 (diff)
downloadsubsurface-3c1a1114042aab6fe62e0f09a93090798ff33e3a.tar.gz
Fix potential compile error
This compiled just fine for me but apparently the QStringList needs to be explicitly included on Ubuntu 15.10. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface-core')
-rw-r--r--subsurface-core/subsurface-qt/DiveObjectHelper.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/subsurface-core/subsurface-qt/DiveObjectHelper.h b/subsurface-core/subsurface-qt/DiveObjectHelper.h
index 5e7858b24..2833cd30c 100644
--- a/subsurface-core/subsurface-qt/DiveObjectHelper.h
+++ b/subsurface-core/subsurface-qt/DiveObjectHelper.h
@@ -4,6 +4,7 @@
#include "../dive.h"
#include <QObject>
#include <QString>
+#include <QStringList>
class DiveObjectHelper : public QObject {
Q_OBJECT
@@ -89,4 +90,4 @@ private:
};
Q_DECLARE_METATYPE(DiveObjectHelper*)
-#endif \ No newline at end of file
+#endif