diff options
Diffstat (limited to 'core/gpslocation.cpp')
-rw-r--r-- | core/gpslocation.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/core/gpslocation.cpp b/core/gpslocation.cpp index 2fcb9f1b0..7b68c68f0 100644 --- a/core/gpslocation.cpp +++ b/core/gpslocation.cpp @@ -466,15 +466,13 @@ void GpsLocation::clearGpsData() } #endif -void GpsLocation::postError(QNetworkReply::NetworkError error) +void GpsLocation::postError(QNetworkReply::NetworkError) { - Q_UNUSED(error); status(QString("error when sending a GPS fix: %1").arg(reply->errorString())); } -void GpsLocation::getUseridError(QNetworkReply::NetworkError error) +void GpsLocation::getUseridError(QNetworkReply::NetworkError) { - Q_UNUSED(error); status(QString("error when retrieving Subsurface webservice user id: %1").arg(reply->errorString())); } |