Commit 5389a65d authored by Alex Blasche's avatar Alex Blasche
Browse files

Update Location QML imports


the changed attributes should have a matching meta object export.

Change-Id: I35cd3d5fabe1c4837bce9e64935850dba0501846
Reviewed-by: default avatarKai Koehne <kai.koehne@qt.io>
Reviewed-by: default avatarPaolo Angelelli <paolo.angelelli@qt.io>
Showing with 8 additions and 4 deletions
......@@ -196,6 +196,8 @@ public:
qmlRegisterType<QDeclarativeGeoRouteLeg, 12>(uri, major, minor, "RouteLeg");
minor = 13;
qmlRegisterType<QDeclarativeGeoMap, 13>(uri, major, minor, "Map");
qmlRegisterType<QDeclarativeGeoRoute, 13>(uri, major, minor, "Route");
qmlRegisterType<QDeclarativeGeoRouteQuery, 13>(uri, major, minor, "RouteQuery");
// Register the latest Qt version as QML type version
......
......@@ -152,9 +152,10 @@ Module {
exports: [
"QtLocation/Map 5.0",
"QtLocation/Map 5.11",
"QtLocation/Map 5.12"
"QtLocation/Map 5.12",
"QtLocation/Map 5.13"
]
exportMetaObjectRevisions: [0, 11, 12]
exportMetaObjectRevisions: [0, 11, 12, 13]
Property { name: "gesture"; type: "QQuickGeoMapGestureArea"; isReadonly: true; isPointer: true }
Property { name: "plugin"; type: "QDeclarativeGeoServiceProvider"; isPointer: true }
Property { name: "minimumZoomLevel"; type: "double" }
......@@ -470,9 +471,10 @@ Module {
exports: [
"QtLocation/Route 5.0",
"QtLocation/Route 5.11",
"QtLocation/Route 5.12"
"QtLocation/Route 5.12",
"QtLocation/Route 5.13"
]
exportMetaObjectRevisions: [0, 11, 12]
exportMetaObjectRevisions: [0, 11, 12, 13]
Property { name: "bounds"; type: "QGeoRectangle"; isReadonly: true }
Property { name: "travelTime"; type: "int"; isReadonly: true }
Property { name: "distance"; type: "double"; isReadonly: true }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment