diff options
author | Qt Forward Merge Bot <qt_forward_merge_bot@qt-project.org> | 2019-02-26 03:03:14 +0100 |
---|---|---|
committer | Qt Forward Merge Bot <qt_forward_merge_bot@qt-project.org> | 2019-02-26 03:03:14 +0100 |
commit | c8771162fca507caaf3c1881ac26e47593608b66 (patch) | |
tree | 9e6c934f457a608ca5d4bd948fa67a86a22917b7 | |
parent | 58aeef3e7f9c2addcfc6675a48040ea48c06969d (diff) | |
parent | e80ba97cd95f0b01ef79b9f99c9ab499aac4249f (diff) | |
download | qtlocation-c8771162fca507caaf3c1881ac26e47593608b66.tar.gz |
Merge remote-tracking branch 'origin/5.13' into dev
Change-Id: I0010532f9018d0ec30aa4dec25b633cff61a2618
-rw-r--r-- | tests/auto/declarative_ui/tst_map_error.qml | 4 | ||||
-rw-r--r-- | tests/auto/declarative_ui/tst_map_item.qml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/declarative_ui/tst_map_error.qml b/tests/auto/declarative_ui/tst_map_error.qml index 35613f63..a5e122f0 100644 --- a/tests/auto/declarative_ui/tst_map_error.qml +++ b/tests/auto/declarative_ui/tst_map_error.qml @@ -147,9 +147,9 @@ Item { function test_map_toCoordinate() { map_no_plugin.center = coordinate - compare(map_no_plugin.toCoordinate(50,50).isValid,false) + compare(map_no_plugin.toCoordinate(Qt.point(50,50)).isValid,false) map_error_plugin.center = coordinate - compare(map_error_plugin.toCoordinate(50,50).isValid,false) + compare(map_error_plugin.toCoordinate(Qt.point(50,50)).isValid,false) } function test_map_fromCoordinate() diff --git a/tests/auto/declarative_ui/tst_map_item.qml b/tests/auto/declarative_ui/tst_map_item.qml index 1646fdba..68437c51 100644 --- a/tests/auto/declarative_ui/tst_map_item.qml +++ b/tests/auto/declarative_ui/tst_map_item.qml @@ -443,7 +443,7 @@ Item { map.center = preMapCircle.center verify(LocationTestHelper.waitForPolished(map)) point = map.fromCoordinate(preMapCircle.center) - targetCoordinate = map.toCoordinate(51, 51) + targetCoordinate = map.toCoordinate(Qt.point(51, 51)) mousePress(map, point.x, point.y) for (i = 0; i < 50; i += 1) { wait(1) |