diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2018-03-08 21:35:44 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-03-11 11:40:12 -0700 |
commit | eb8772d967cc033c7d0e38d3b659eb869be61ac4 (patch) | |
tree | 0f457c78ccef771ae2761121145aa8e3669bfab9 /map-widget/qmlmapwidgethelper.h | |
parent | 2317fed9b6d4139fe648c2203ace37559016db46 (diff) | |
download | subsurface-eb8772d967cc033c7d0e38d3b659eb869be61ac4.tar.gz |
qmapwidgethelper: move includes to the header
Add the following includes in the header -
<QVariant> and <QGeoCoordinate> otherwise the
mobile build fails.
It is unclear how the desktop build does not complain
about this.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Diffstat (limited to 'map-widget/qmlmapwidgethelper.h')
-rw-r--r-- | map-widget/qmlmapwidgethelper.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/map-widget/qmlmapwidgethelper.h b/map-widget/qmlmapwidgethelper.h index 58f7c4dad..d1ba47f41 100644 --- a/map-widget/qmlmapwidgethelper.h +++ b/map-widget/qmlmapwidgethelper.h @@ -3,8 +3,9 @@ #define QMLMAPWIDGETHELPER_H #include <QObject> +#include <QGeoCoordinate> +#include <QVariant> -class QGeoCoordinate; class MapLocationModel; class MapLocation; struct dive_site; |