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:
Dirk Hohndel 2016-01-11 06:09:27 -08:00
parent 602d1227a7
commit 3c1a111404

View file

@ -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