diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2017-12-24 18:55:26 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-12-24 10:56:00 -0800 |
commit | 4c4222d61119e437b4b79e36903a5b357756de21 (patch) | |
tree | 0118a0eeb7cf21437b74c2c99a61dd82b3b6afef /map-widget | |
parent | eec69de7ab152787148deb31f9ae6753a0a3081d (diff) | |
download | subsurface-4c4222d61119e437b4b79e36903a5b357756de21.tar.gz |
mapwidget: revert QtQuick version to 2.0
In commit f3d978b8a5fb6 the QtQuick version was upgraded
to 2.6 (from 2.0 for the mapwidget). This is, apparently,
too agressive, as there are still mainstream distributions
that are still on Qt 5.5.1 for which 2.6 of QtQuick is too
new. And as a sidenote: Qt 5.5.1 was released in October
2015.
So partially revert commit f3d978b8a5fb6.
Fixes: #978
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'map-widget')
-rw-r--r-- | map-widget/qml/MapWidget.qml | 2 | ||||
-rw-r--r-- | map-widget/qml/MapWidgetContextMenu.qml | 2 | ||||
-rw-r--r-- | map-widget/qml/MapWidgetError.qml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/map-widget/qml/MapWidget.qml b/map-widget/qml/MapWidget.qml index ee6b49231..e2848bee7 100644 --- a/map-widget/qml/MapWidget.qml +++ b/map-widget/qml/MapWidget.qml @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -import QtQuick 2.6 +import QtQuick 2.0 import QtLocation 5.3 import QtPositioning 5.3 import org.subsurfacedivelog.mobile 1.0 diff --git a/map-widget/qml/MapWidgetContextMenu.qml b/map-widget/qml/MapWidgetContextMenu.qml index cf96cd975..8498d5e26 100644 --- a/map-widget/qml/MapWidgetContextMenu.qml +++ b/map-widget/qml/MapWidgetContextMenu.qml @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -import QtQuick 2.6 +import QtQuick 2.0 Item { id: container diff --git a/map-widget/qml/MapWidgetError.qml b/map-widget/qml/MapWidgetError.qml index 2091a64ed..346e95f07 100644 --- a/map-widget/qml/MapWidgetError.qml +++ b/map-widget/qml/MapWidgetError.qml @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -import QtQuick 2.6 +import QtQuick 2.0 Item { Text { |