summaryrefslogtreecommitdiff
path: root/src/imports/location/declarativeplaces/qdeclarativesupportedcategoriesmodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/location/declarativeplaces/qdeclarativesupportedcategoriesmodel.cpp')
-rw-r--r--src/imports/location/declarativeplaces/qdeclarativesupportedcategoriesmodel.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/imports/location/declarativeplaces/qdeclarativesupportedcategoriesmodel.cpp b/src/imports/location/declarativeplaces/qdeclarativesupportedcategoriesmodel.cpp
index 38a73f2e..fc88c889 100644
--- a/src/imports/location/declarativeplaces/qdeclarativesupportedcategoriesmodel.cpp
+++ b/src/imports/location/declarativeplaces/qdeclarativesupportedcategoriesmodel.cpp
@@ -263,12 +263,12 @@ void QDeclarativeSupportedCategoriesModel::setPlugin(QDeclarativeGeoServiceProvi
if (serviceProvider) {
QPlaceManager *placeManager = serviceProvider->placeManager();
if (placeManager) {
- disconnect(placeManager, SIGNAL(categoryAdded(QPlaceCategory, QString)),
- this, SLOT(addedCategory(QPlaceCategory, QString)));
- disconnect(placeManager, SIGNAL(categoryUpdated(QPlaceCategory, QString)),
- this, SLOT(updatedCategory(QPlaceCategory, QString)));
- disconnect(placeManager, SIGNAL(categoryRemoved(QString, QString)),
- this, SLOT(removedCategory(QString, QString)));
+ disconnect(placeManager, SIGNAL(categoryAdded(QPlaceCategory,QString)),
+ this, SLOT(addedCategory(QPlaceCategory,QString)));
+ disconnect(placeManager, SIGNAL(categoryUpdated(QPlaceCategory,QString)),
+ this, SLOT(updatedCategory(QPlaceCategory,QString)));
+ disconnect(placeManager, SIGNAL(categoryRemoved(QString,QString)),
+ this, SLOT(removedCategory(QString,QString)));
disconnect(placeManager, SIGNAL(dataChanged()),
this, SIGNAL(dataChanged()));
}
@@ -479,12 +479,12 @@ void QDeclarativeSupportedCategoriesModel::connectNotificationSignals()
// listen for any category notifications so that we can reupdate the categories
// model.
- connect(placeManager, SIGNAL(categoryAdded(QPlaceCategory, QString)),
- this, SLOT(addedCategory(QPlaceCategory, QString)));
- connect(placeManager, SIGNAL(categoryUpdated(QPlaceCategory, QString)),
- this, SLOT(updatedCategory(QPlaceCategory, QString)));
- connect(placeManager, SIGNAL(categoryRemoved(QString, QString)),
- this, SLOT(removedCategory(QString, QString)));
+ connect(placeManager, SIGNAL(categoryAdded(QPlaceCategory,QString)),
+ this, SLOT(addedCategory(QPlaceCategory,QString)));
+ connect(placeManager, SIGNAL(categoryUpdated(QPlaceCategory,QString)),
+ this, SLOT(updatedCategory(QPlaceCategory,QString)));
+ connect(placeManager, SIGNAL(categoryRemoved(QString,QString)),
+ this, SLOT(removedCategory(QString,QString)));
connect(placeManager, SIGNAL(dataChanged()),
this, SIGNAL(dataChanged()));
}