summaryrefslogtreecommitdiff
path: root/doc/src/snippets/cpp/cppqml.cpp
diff options
context:
space:
mode:
authorAaron McCarthy <aaron.mccarthy@nokia.com>2012-08-16 13:32:43 +1000
committerQt by Nokia <qt-info@nokia.com>2012-08-28 10:07:49 +0200
commit059388adce26be48868cd741b4c5d751298fb4d8 (patch)
tree1a8a41c0f280b7ab3c502b49527bd609d1c0884a /doc/src/snippets/cpp/cppqml.cpp
parent7dd46f8c96a4bdaca2809ff97b773f358392516f (diff)
downloadqtlocation-57906260cc8fdff3cde3c693857a084f3ecca95e.tar.gz
Convert GeoShape, GeoRectangle and GeoCircle into QML value types.v5.0.0-beta1
This replaces the GeoShape, GeoRectangle and GeoCircle QML elements with value types. A value type is a better fit for shape types. It is very similar to a rect with some utility functions. Declare QGeoShape, QGeoRectangle and QGeoCircle as movable types. Update documentation. Change-Id: Id6c48e1e841c68f2f0c5c6a9c4a6580a57e2dfb6 Reviewed-by: abcd <amos.choy@nokia.com>
Diffstat (limited to 'doc/src/snippets/cpp/cppqml.cpp')
-rw-r--r--doc/src/snippets/cpp/cppqml.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/doc/src/snippets/cpp/cppqml.cpp b/doc/src/snippets/cpp/cppqml.cpp
index 0e7158a7..d5d4bad9 100644
--- a/doc/src/snippets/cpp/cppqml.cpp
+++ b/doc/src/snippets/cpp/cppqml.cpp
@@ -127,22 +127,6 @@ void cppQmlInterface(QObject *qmlObject)
qmlObject->setProperty("address", QVariant::fromValue(geoAddress));
//! [Address set]
- //! [GeoRectangle get]
- QGeoRectangle geoRectangle = qmlObject->property("rectangle").value<QGeoRectangle>();
- //! [GeoRectangle get]
-
- //! [GeoRectangle set]
- qmlObject->setProperty("rectangle", QVariant::fromValue(geoRectangle));
- //! [GeoRectangle set]
-
- //! [GeoCircle get]
- QGeoCircle geoCircle = qmlObject->property("circle").value<QGeoCircle>();
- //! [GeoCircle get]
-
- //! [GeoCircle set]
- qmlObject->setProperty("circle", QVariant::fromValue(geoCircle));
- //! [GeoCircle set]
-
//! [Location get]
QGeoLocation geoLocation = qmlObject->property("location").value<QGeoLocation>();
//! [Location get]