summaryrefslogtreecommitdiff
path: root/src/location/maps/qgeomap.cpp
diff options
context:
space:
mode:
authorbhashish <basel.hashisho@nokia.com>2012-03-13 00:01:29 +0100
committerQt by Nokia <qt-info@nokia.com>2012-03-16 05:16:25 +0100
commit889652001f123f31d22bc9740e437e377fa8bbce (patch)
treeeceb4c2327944304ba7c3adf91828657ef034356 /src/location/maps/qgeomap.cpp
parent86248b29699e1ed4b55a0bcde4a8078083ea34b3 (diff)
downloadqtlocation-889652001f123f31d22bc9740e437e377fa8bbce.tar.gz
Implementation of copyrights notice handling mechanism in tiled maps.
The implementation is split into two parts: 1) Implementing the mechanism: - Introducing QGeoCopyrights class in imports qml declarative module - Implementation of copyrights-change notification mechanism for tiled map operation. - Implementation of a trivial Nokia Plugin copyrights notice which renders only Nokia logo. 2) Implementation of Nokia Plugin specific copyrights fetching and passing through above established mechanism. This commit contains first part only. Next part to be implemented shortly in following commit. Change-Id: I2b3d85c058e6c6502d174215e37640dfff898261 Reviewed-by: Aaron McCarthy <aaron.mccarthy@nokia.com>
Diffstat (limited to 'src/location/maps/qgeomap.cpp')
-rw-r--r--src/location/maps/qgeomap.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/location/maps/qgeomap.cpp b/src/location/maps/qgeomap.cpp
index 6eaa00cb..420dbab1 100644
--- a/src/location/maps/qgeomap.cpp
+++ b/src/location/maps/qgeomap.cpp
@@ -81,6 +81,7 @@ QGeoMap::QGeoMap(QGeoMapData *mapData, QObject *parent)
connect(mapData_, SIGNAL(cameraDataChanged(const QGeoCameraData&)), this, SIGNAL(cameraDataChanged(const QGeoCameraData&)));
connect(mapData_, SIGNAL(updateRequired()), this, SIGNAL(updateRequired()));
connect(mapData_, SIGNAL(activeMapTypeChanged()), this, SIGNAL(activeMapTypeChanged()));
+ connect(mapData_, SIGNAL(copyrightsChanged(const QImage&, const QPoint&)), this, SIGNAL(copyrightsChanged(const QImage&, const QPoint&)));
}
QGeoMap::~QGeoMap()