summaryrefslogtreecommitdiffstats
path: root/src/imports/location/declarativeplaces
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/location/declarativeplaces')
-rw-r--r--src/imports/location/declarativeplaces/qdeclarativeplaceattribute.cpp6
-rw-r--r--src/imports/location/declarativeplaces/qdeclarativesearchresultmodel.cpp4
-rw-r--r--src/imports/location/declarativeplaces/qdeclarativesupportedcategoriesmodel.cpp4
3 files changed, 10 insertions, 4 deletions
diff --git a/src/imports/location/declarativeplaces/qdeclarativeplaceattribute.cpp b/src/imports/location/declarativeplaces/qdeclarativeplaceattribute.cpp
index 0edd0d1c..fdb893dc 100644
--- a/src/imports/location/declarativeplaces/qdeclarativeplaceattribute.cpp
+++ b/src/imports/location/declarativeplaces/qdeclarativeplaceattribute.cpp
@@ -113,10 +113,12 @@
*/
/*!
- \qmlsignal void ExtendedAttributes::onValueChanged(string key, variant value)
+ \qmlsignal void ExtendedAttributes::valueChanged(string key, variant value)
- This signal is raised when the set of attributes changes. \a key is the key
+ This signal is emitted when the set of attributes changes. \a key is the key
corresponding to the \a value that was changed.
+
+ The corresponding handler is \c onValueChanged.
*/
/*!
diff --git a/src/imports/location/declarativeplaces/qdeclarativesearchresultmodel.cpp b/src/imports/location/declarativeplaces/qdeclarativesearchresultmodel.cpp
index ed97e93e..8378b33b 100644
--- a/src/imports/location/declarativeplaces/qdeclarativesearchresultmodel.cpp
+++ b/src/imports/location/declarativeplaces/qdeclarativesearchresultmodel.cpp
@@ -908,11 +908,13 @@ int QDeclarativeSearchResultModel::getRow(const QString &placeId) const
/*!
\qmlsignal PlaceSearchResultModel::dataChanged()
- Indicates that significant changes have been made to the underlying datastore.
+ This signal is emitted when significant changes have been made to the underlying datastore.
Applications should act on this signal at their own discretion. The data
provided by the model could be out of date and so the model should be reupdated
sometime, however an immediate reupdate may be disconcerting to users if the results
change without any action on their part.
+
+ The corresponding handler is \c onDataChanged.
*/
diff --git a/src/imports/location/declarativeplaces/qdeclarativesupportedcategoriesmodel.cpp b/src/imports/location/declarativeplaces/qdeclarativesupportedcategoriesmodel.cpp
index 7d50af7e..c2d765e4 100644
--- a/src/imports/location/declarativeplaces/qdeclarativesupportedcategoriesmodel.cpp
+++ b/src/imports/location/declarativeplaces/qdeclarativesupportedcategoriesmodel.cpp
@@ -671,10 +671,12 @@ int QDeclarativeSupportedCategoriesModel::rowToAddChild(PlaceCategoryNode *node,
/*!
\qmlsignal CategoryModel::dataChanged()
- Indicates that significant changes have been made to the underlying datastore.
+ This signal is emitted when significant changes have been made to the underlying datastore.
Applications should act on this signal at their own discretion. The data
provided by the model could be out of date and so the model should be reupdated
sometime, however an immediate reupdate may be disconcerting to users if the categories
change without any action on their part.
+
+ The corresponding handler is \c onDataChanged.
*/