diff options
Diffstat (limited to 'core/gpslocation.h')
-rw-r--r-- | core/gpslocation.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/gpslocation.h b/core/gpslocation.h index c6e4a7912..0e333ed82 100644 --- a/core/gpslocation.h +++ b/core/gpslocation.h @@ -20,7 +20,7 @@ struct gpsTracker { int idx; }; -class GpsLocation : QObject { +class GpsLocation : public QObject { Q_OBJECT public: GpsLocation(void (*showMsgCB)(const char *msg), QObject *parent); @@ -61,6 +61,7 @@ public slots: void serviceEnable(bool toggle); void newPosition(QGeoPositionInfo pos); void updateTimeout(); + void positionSourceError(QGeoPositionInfoSource::Error error); void uploadToServer(); void downloadFromServer(); void postError(QNetworkReply::NetworkError error); |