summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorabcd <amos.choy@nokia.com>2012-01-30 11:35:06 +1000
committerQt by Nokia <qt-info@nokia.com>2012-01-30 05:39:18 +0100
commit8ba3a6ffd2a974c9ea91035ac6c4ccf30a6c74af (patch)
tree44043ae3b0ba63177ad19466320d4c28ece99d57 /src
parent074260af5a59c2a6a9d49cf0b4b9e8a5db5b11f8 (diff)
downloadqtlocation-8ba3a6ffd2a974c9ea91035ac6c4ccf30a6c74af.tar.gz
Fix inconsistency, use childCategoryIds over childrenCategoryIds
Change-Id: I37dfa12027bcc5424e65aa515f512b18a94692c4 Reviewed-by: Aaron McCarthy <aaron.mccarthy@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/imports/location/declarativeplaces/qdeclarativesearchmodelbase.cpp2
-rw-r--r--src/location/places/qplacemanager.cpp10
-rw-r--r--src/location/places/qplacemanager.h2
-rw-r--r--src/location/places/qplacemanagerengine.cpp6
-rw-r--r--src/location/places/qplacemanagerengine.h2
-rw-r--r--src/plugins/geoservices/nokia/qplacemanagerengine_nokia.cpp2
-rw-r--r--src/plugins/geoservices/nokia/qplacemanagerengine_nokia.h2
-rw-r--r--src/plugins/geoservices/nokia_places_jsondb/qplacemanagerengine_jsondb.cpp2
-rw-r--r--src/plugins/geoservices/nokia_places_jsondb/qplacemanagerengine_jsondb.h2
9 files changed, 15 insertions, 15 deletions
diff --git a/src/imports/location/declarativeplaces/qdeclarativesearchmodelbase.cpp b/src/imports/location/declarativeplaces/qdeclarativesearchmodelbase.cpp
index 8230ccfb..5c511230 100644
--- a/src/imports/location/declarativeplaces/qdeclarativesearchmodelbase.cpp
+++ b/src/imports/location/declarativeplaces/qdeclarativesearchmodelbase.cpp
@@ -217,7 +217,7 @@ void QDeclarativeSearchModelBase::initializePlugin(QDeclarativeGeoServiceProvide
if (serviceProvider) {
QPlaceManager *placeManager = serviceProvider->placeManager();
if (placeManager) {
- if (placeManager->childrenCategoryIds().isEmpty()) {
+ if (placeManager->childCategoryIds().isEmpty()) {
QPlaceReply *reply = placeManager->initializeCategories();
connect(reply, SIGNAL(finished()), reply, SLOT(deleteLater()));
}
diff --git a/src/location/places/qplacemanager.cpp b/src/location/places/qplacemanager.cpp
index 49222333..93bffd5b 100644
--- a/src/location/places/qplacemanager.cpp
+++ b/src/location/places/qplacemanager.cpp
@@ -122,7 +122,7 @@ QT_BEGIN_NAMESPACE
\o QPlaceManager::childCategories()
\o QPlaceManager::category()
\o QPlaceManager::parentCategoryId()
- \o QPlaceManager::childrenCategoryIds();
+ \o QPlaceManager::childCategoryIds();
\endlist
If the categories need to be refreshed or reloaded, the initializeCategories() function
@@ -325,12 +325,12 @@ QString QPlaceManager::parentCategoryId(const QString &categoryId) const
}
/*!
- Returns the children category ids of the category corresponding to \a categoryId.
- If \a categoryId is empty then all top level category ids are returned.
+ Returns the child category ids of the category corresponding to \a parentId.
+ If \a parentId is empty then all top level category ids are returned.
*/
-QStringList QPlaceManager::childrenCategoryIds(const QString &categoryId) const
+QStringList QPlaceManager::childCategoryIds(const QString &parentId) const
{
- return d->childrenCategoryIds(categoryId);
+ return d->childCategoryIds(parentId);
}
/*!
diff --git a/src/location/places/qplacemanager.h b/src/location/places/qplacemanager.h
index 7ea3d388..1fe2d553 100644
--- a/src/location/places/qplacemanager.h
+++ b/src/location/places/qplacemanager.h
@@ -112,7 +112,7 @@ public:
QPlaceReply *initializeCategories();
QString parentCategoryId(const QString &categoryId) const;
- QStringList childrenCategoryIds(const QString &categoryId = QString()) const;
+ QStringList childCategoryIds(const QString &parentId = QString()) const;
QPlaceCategory category(const QString &categoryId) const;
QList<QPlaceCategory> childCategories(const QString &parentId = QString()) const;
diff --git a/src/location/places/qplacemanagerengine.cpp b/src/location/places/qplacemanagerengine.cpp
index 524fa89e..dd481f73 100644
--- a/src/location/places/qplacemanagerengine.cpp
+++ b/src/location/places/qplacemanagerengine.cpp
@@ -262,10 +262,10 @@ QPlaceManagerEnginePrivate::~QPlaceManagerEnginePrivate()
*/
/*!
- \fn QStringList QPlaceManagerEngine::childrenCategoryIds(const QString &categoryId) const
+ \fn QStringList QPlaceManagerEngine::childCategoryIds(const QString &parentId) const
- Returns the children category ids of the category corresponding to \a categoryId.
- If \a categoryId is empty then all top level category ids are returned.
+ Returns the child category ids of the category corresponding to \a parentId.
+ If \a parentId is empty then all top level category ids are returned.
*/
/*!
diff --git a/src/location/places/qplacemanagerengine.h b/src/location/places/qplacemanagerengine.h
index 9dc4d089..607c8b96 100644
--- a/src/location/places/qplacemanagerengine.h
+++ b/src/location/places/qplacemanagerengine.h
@@ -80,7 +80,7 @@ public:
virtual QPlaceReply *initializeCategories() = 0;
virtual QString parentCategoryId(const QString &categoryId) const = 0;
- virtual QStringList childrenCategoryIds(const QString &categoryId) const = 0;
+ virtual QStringList childCategoryIds(const QString &categoryId) const = 0;
virtual QPlaceCategory category(const QString &categoryId) const = 0;
virtual QList<QPlaceCategory> childCategories(const QString &parentId) const = 0;
diff --git a/src/plugins/geoservices/nokia/qplacemanagerengine_nokia.cpp b/src/plugins/geoservices/nokia/qplacemanagerengine_nokia.cpp
index 8c8831ad..aaf57c1f 100644
--- a/src/plugins/geoservices/nokia/qplacemanagerengine_nokia.cpp
+++ b/src/plugins/geoservices/nokia/qplacemanagerengine_nokia.cpp
@@ -283,7 +283,7 @@ QString QPlaceManagerEngineNokia::parentCategoryId(const QString &categoryId) co
return tree.value(categoryId).parentId;
}
-QStringList QPlaceManagerEngineNokia::childrenCategoryIds(const QString &categoryId) const
+QStringList QPlaceManagerEngineNokia::childCategoryIds(const QString &categoryId) const
{
QPlaceCategoryTree tree = QPlaceCategoriesRepository::instance()->categories();
return tree.value(categoryId).childIds;
diff --git a/src/plugins/geoservices/nokia/qplacemanagerengine_nokia.h b/src/plugins/geoservices/nokia/qplacemanagerengine_nokia.h
index 8df05753..fc6e41e0 100644
--- a/src/plugins/geoservices/nokia/qplacemanagerengine_nokia.h
+++ b/src/plugins/geoservices/nokia/qplacemanagerengine_nokia.h
@@ -83,7 +83,7 @@ public:
QPlaceReply *initializeCategories();
QString parentCategoryId(const QString &categoryId) const;
- QStringList childrenCategoryIds(const QString &categoryId) const;
+ QStringList childCategoryIds(const QString &categoryId) const;
QPlaceCategory category(const QString &categoryId) const;
QList<QPlaceCategory> childCategories(const QString &parentId) const;
diff --git a/src/plugins/geoservices/nokia_places_jsondb/qplacemanagerengine_jsondb.cpp b/src/plugins/geoservices/nokia_places_jsondb/qplacemanagerengine_jsondb.cpp
index 9c1a3ec8..853f56f2 100644
--- a/src/plugins/geoservices/nokia_places_jsondb/qplacemanagerengine_jsondb.cpp
+++ b/src/plugins/geoservices/nokia_places_jsondb/qplacemanagerengine_jsondb.cpp
@@ -188,7 +188,7 @@ QString QPlaceManagerEngineJsonDb::parentCategoryId(const QString &categoryId) c
.first().toMap().value(JsonConverter::CategoryParentId).toString();
}
-QStringList QPlaceManagerEngineJsonDb::childrenCategoryIds(const QString &categoryId) const
+QStringList QPlaceManagerEngineJsonDb::childCategoryIds(const QString &categoryId) const
{
QStringList result;
QList<QPlaceCategory> children = childCategories(categoryId);
diff --git a/src/plugins/geoservices/nokia_places_jsondb/qplacemanagerengine_jsondb.h b/src/plugins/geoservices/nokia_places_jsondb/qplacemanagerengine_jsondb.h
index 7eef23f7..faf0a9c9 100644
--- a/src/plugins/geoservices/nokia_places_jsondb/qplacemanagerengine_jsondb.h
+++ b/src/plugins/geoservices/nokia_places_jsondb/qplacemanagerengine_jsondb.h
@@ -87,7 +87,7 @@ public:
QPlaceReply *initializeCategories();
QString parentCategoryId(const QString &categoryId) const;
- QStringList childrenCategoryIds(const QString &categoryId) const;
+ QStringList childCategoryIds(const QString &categoryId) const;
QPlaceCategory category(const QString &categoryId) const;
QList<QPlaceCategory> childCategories(const QString &parentId) const;