summaryrefslogtreecommitdiff
path: root/src/location/maps/qgeomap_p.h
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@theqtcompany.com>2015-04-30 17:37:44 +0200
committerMichal Klocek <michal.klocek@theqtcompany.com>2015-05-05 13:04:51 +0000
commitab4d5336fba82f65e7393f2227a4b9c94075b39f (patch)
treed8a4c665f6c7eb5a0f91c11b885d624b823a8a7a /src/location/maps/qgeomap_p.h
parent4fb86e6d29a13d61ac04a302e4d312de349115f8 (diff)
downloadqtlocation-ab4d5336fba82f65e7393f2227a4b9c94075b39f.tar.gz
Change visibility of updateSceneGraph in QGeoMap
Change-Id: Ief580b2091c59b98b046d8c02271212b97493bdb Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
Diffstat (limited to 'src/location/maps/qgeomap_p.h')
-rw-r--r--src/location/maps/qgeomap_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/location/maps/qgeomap_p.h b/src/location/maps/qgeomap_p.h
index d3c83147..8de467a5 100644
--- a/src/location/maps/qgeomap_p.h
+++ b/src/location/maps/qgeomap_p.h
@@ -72,8 +72,6 @@ public:
QGeoMapController *mapController();
- virtual QSGNode *updateSceneGraph(QSGNode *node, QQuickWindow *window) = 0;
-
void resize(int width, int height);
int width() const;
int height() const;
@@ -94,6 +92,7 @@ public:
protected:
QGeoMap(QGeoMapPrivate &dd, QObject *parent = 0);
void setCameraData(const QGeoCameraData &cameraData);
+ virtual QSGNode *updateSceneGraph(QSGNode *node, QQuickWindow *window) = 0;
public Q_SLOTS:
void update();
@@ -108,7 +107,8 @@ Q_SIGNALS:
private:
Q_DISABLE_COPY(QGeoMap)
- friend class QGeoMapController;
+ friend class QGeoMapController; //setCameraData
+ friend class QDeclarativeGeoMap; //updateSceneGraph
};
QT_END_NAMESPACE