summaryrefslogtreecommitdiffstats
path: root/src/imports
diff options
context:
space:
mode:
authorCorentin Jabot <corentinjabot@gmail.com>2012-06-04 23:07:02 +0200
committerQt by Nokia <qt-info@nokia.com>2012-06-05 02:40:23 +0200
commit8f9c0d1652edfc98f918b92af58a80e2d92b2688 (patch)
treecdc47ce53e06fdefb9c9fadf12ea3eda58e3aa6d /src/imports
parent081348a1ddc1b4f20559629aa1626af8d0d51126 (diff)
replacing signals/slots keyword by the equivalent Q_SIGNALS/Q_SLOTS
Change-Id: I9ad42ab2f40992c68e9d3bf26fd09dfc46527ba5 Reviewed-by: Alex Wilson <alex.wilson@nokia.com>
Diffstat (limited to 'src/imports')
-rw-r--r--src/imports/serviceframework/qdeclarativeservice_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/imports/serviceframework/qdeclarativeservice_p.h b/src/imports/serviceframework/qdeclarativeservice_p.h
index 088b9cf3..396fb8d7 100644
--- a/src/imports/serviceframework/qdeclarativeservice_p.h
+++ b/src/imports/serviceframework/qdeclarativeservice_p.h
@@ -97,7 +97,7 @@ Q_SIGNALS:
void error(const QString &errorString);
-private slots:
+private Q_SLOTS:
void IPCFault(QService::UnrecoverableIPCError);
private:
@@ -178,7 +178,7 @@ Q_SIGNALS:
void versionMatchChanged();
void monitorServiceRegistrationsChanged();
-protected slots:
+protected Q_SLOTS:
void servicesAddedRemoved();
void updateFilterResults();
void updateServiceList();