diff options
Diffstat (limited to 'src/location/places')
-rw-r--r-- | src/location/places/qplacereply.cpp | 13 | ||||
-rw-r--r-- | src/location/places/qplacereply.h | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/location/places/qplacereply.cpp b/src/location/places/qplacereply.cpp index 55e67e43..29f1fb84 100644 --- a/src/location/places/qplacereply.cpp +++ b/src/location/places/qplacereply.cpp @@ -229,6 +229,19 @@ void QPlaceReply::abort() */ /*! + \fn void QPlaceReply::contentUpdated() + + This signal is emitted when this reply has updated content available. + Depending on the plugin, this signal may never be emitted or emitted + multiple times before \l QPlaceReply::finished() is emitted, as some + backends are able to return the requested content asynchronously and + incrementally. + + \note Do not delete or deleteLater this reply object in the slot + connected to this signal. Do it only upon \l QPlaceReply::finished. +*/ + +/*! \fn void QPlaceReply::error(QPlaceReply::Error error, const QString &errorString) This signal is emitted when an error has been detected in the processing of diff --git a/src/location/places/qplacereply.h b/src/location/places/qplacereply.h index 8fd34643..8e84f113 100644 --- a/src/location/places/qplacereply.h +++ b/src/location/places/qplacereply.h @@ -86,6 +86,7 @@ public Q_SLOTS: Q_SIGNALS: void finished(); + void contentUpdated(); void aborted(); void error(QPlaceReply::Error error, const QString &errorString = QString()); |