diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-01-11 06:09:27 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-01-11 06:09:27 -0800 |
commit | 3c1a1114042aab6fe62e0f09a93090798ff33e3a (patch) | |
tree | 00ec316438f3885a2ba2914bd556de8a566e1d13 /subsurface-core | |
parent | 602d1227a7b7d9c9532e55c8ab3a12fedef51580 (diff) | |
download | subsurface-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.h | 3 |
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 |