mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
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>
This commit is contained in:
parent
602d1227a7
commit
3c1a111404
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue