summaryrefslogtreecommitdiff
path: root/src/location
diff options
context:
space:
mode:
authorAlex Wilson <alex.wilson@nokia.com>2012-05-14 17:35:13 +1000
committerQt by Nokia <qt-info@nokia.com>2012-05-15 06:03:33 +0200
commit91fef5b781609a0ccbccb9d282148fc04feca585 (patch)
tree7ea8a7eacfc55b91a20532acf69ac0728da2c74a /src/location
parent402f904f8c37e0b14ce07d49aaa391ee2d71de64 (diff)
downloadqtlocation-91fef5b781609a0ccbccb9d282148fc04feca585.tar.gz
Coding style fixes: use Q_SIGNALS/Q_SLOTS
Change-Id: I64fd9e5430dcd6cca38bcef3cbe73a944223b17a Reviewed-by: Aaron McCarthy <aaron.mccarthy@nokia.com>
Diffstat (limited to 'src/location')
-rw-r--r--src/location/maps/qgeomapcontroller_p.h4
-rw-r--r--src/location/maps/qgeotilecache_p.h2
-rw-r--r--src/location/maps/qgeotilerequestmanager.cpp2
-rw-r--r--src/location/qgeoareamonitor_polling_p.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/src/location/maps/qgeomapcontroller_p.h b/src/location/maps/qgeomapcontroller_p.h
index 53f270ae..7b650851 100644
--- a/src/location/maps/qgeomapcontroller_p.h
+++ b/src/location/maps/qgeomapcontroller_p.h
@@ -114,10 +114,10 @@ public:
void pan(qreal dx, qreal dy);
-private slots:
+private Q_SLOTS:
void cameraDataChanged(const QGeoCameraData &cameraData);
-signals:
+Q_SIGNALS:
void centerChanged(const AnimatableCoordinate &center);
void bearingChanged(qreal bearing);
void tiltChanged(qreal tilt);
diff --git a/src/location/maps/qgeotilecache_p.h b/src/location/maps/qgeotilecache_p.h
index 0f19510b..f282e08c 100644
--- a/src/location/maps/qgeotilecache_p.h
+++ b/src/location/maps/qgeotilecache_p.h
@@ -146,7 +146,7 @@ public:
QGeoTiledMappingManagerEngine::CacheAreas areas = QGeoTiledMappingManagerEngine::AllCaches);
void handleError(const QGeoTileSpec &spec, const QString &errorString);
-public slots:
+public Q_SLOTS:
void printStats();
private:
diff --git a/src/location/maps/qgeotilerequestmanager.cpp b/src/location/maps/qgeotilerequestmanager.cpp
index f4fc791b..73400f29 100644
--- a/src/location/maps/qgeotilerequestmanager.cpp
+++ b/src/location/maps/qgeotilerequestmanager.cpp
@@ -174,7 +174,7 @@ class RetryFuture : public QObject
public:
RetryFuture(const QGeoTileSpec &tile, QGeoTiledMapData *map, QObject *parent=0);
-public slots:
+public Q_SLOTS:
void retry();
private:
diff --git a/src/location/qgeoareamonitor_polling_p.h b/src/location/qgeoareamonitor_polling_p.h
index 849f7e0b..ac9ffbf5 100644
--- a/src/location/qgeoareamonitor_polling_p.h
+++ b/src/location/qgeoareamonitor_polling_p.h
@@ -74,7 +74,7 @@ public :
inline bool isValid() { return location; }
-private slots:
+private Q_SLOTS:
void positionUpdated(const QGeoPositionInfo &info);
private: