diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-11-18 18:52:44 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-11-18 18:52:44 -0800 |
commit | ff5bd062f67e36a3eb20013e40e4e54822b446bf (patch) | |
tree | 90b880c60ffa729234d024a8588251a04b9abe7e /desktop-widgets/mainwindow.h | |
parent | 456cc3955a3e343ea1d2303484d5c79b44635155 (diff) | |
download | subsurface-ff5bd062f67e36a3eb20013e40e4e54822b446bf.tar.gz |
Location service: instantiate location provider in the desktop UI
We still aren't doing anything with it, but at least it's there now.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/mainwindow.h')
-rw-r--r-- | desktop-widgets/mainwindow.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/desktop-widgets/mainwindow.h b/desktop-widgets/mainwindow.h index adf35686e..e53c1efc9 100644 --- a/desktop-widgets/mainwindow.h +++ b/desktop-widgets/mainwindow.h @@ -16,6 +16,7 @@ #include "ui_mainwindow.h" #include "notificationwidget.h" #include "windowtitleupdate.h" +#include "gpslocation.h" struct DiveList; class QSortFilterProxyModel; @@ -93,6 +94,7 @@ public: NotificationWidget *getNotificationWidget(); void enableDisableCloudActions(); void showError(); + private slots: /* file menu action */ @@ -254,6 +256,7 @@ private: QHash<QByteArray, PropertiesForQuadrant> stateProperties; WindowTitleUpdate *wtu; + GpsLocation *locationProvider; }; #endif // MAINWINDOW_H |