summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/location/maps/qgeocodereply.cpp11
-rw-r--r--src/location/maps/qgeoroutereply.cpp9
-rw-r--r--src/location/places/qplacereply.cpp13
3 files changed, 32 insertions, 1 deletions
diff --git a/src/location/maps/qgeocodereply.cpp b/src/location/maps/qgeocodereply.cpp
index d5112a69..85e6e1f5 100644
--- a/src/location/maps/qgeocodereply.cpp
+++ b/src/location/maps/qgeocodereply.cpp
@@ -225,9 +225,20 @@ void QGeoCodeReply::setLocations(const QList<QGeoLocation> &locations)
}
/*!
+ \fn void QGeoCodeReply::aborted()
+ \since 5.9
+
+ This signal is emitted when the operation has been cancelled.
+
+ \sa abort()
+*/
+
+/*!
Cancels the operation immediately.
This will do nothing if the reply is finished.
+
+ \sa aborted()
*/
void QGeoCodeReply::abort()
{
diff --git a/src/location/maps/qgeoroutereply.cpp b/src/location/maps/qgeoroutereply.cpp
index b1c98349..6f7b3129 100644
--- a/src/location/maps/qgeoroutereply.cpp
+++ b/src/location/maps/qgeoroutereply.cpp
@@ -212,6 +212,15 @@ void QGeoRouteReply::addRoutes(const QList<QGeoRoute> &routes)
}
/*!
+ \fn void QGeoRouteReply::aborted()
+ \since 5.9
+
+ This signal is emitted when the operation has been cancelled.
+
+ \sa abort()
+*/
+
+/*!
Cancels the operation immediately.
This will do nothing if the reply is finished.
diff --git a/src/location/places/qplacereply.cpp b/src/location/places/qplacereply.cpp
index 582987b4..55e67e43 100644
--- a/src/location/places/qplacereply.cpp
+++ b/src/location/places/qplacereply.cpp
@@ -195,7 +195,18 @@ QPlaceReply::Error QPlaceReply::error() const
}
/*!
- Aborts the operation.
+ \fn void QPlaceReply::aborted()
+ \since 5.9
+
+ This signal is emitted when the operation has been cancelled.
+
+ \sa abort()
+*/
+
+/*!
+ Cancels the operation immediately.
+
+ \sa aborted()
*/
void QPlaceReply::abort()
{