diff options
author | 2017-11-04 21:23:37 +0200 | |
---|---|---|
committer | 2017-11-05 14:48:56 -0800 | |
commit | 956b45ddfda060fcd818659ee05618ed2e4bfcab (patch) | |
tree | 1acb6ff91cba57e059e7eac8868ecd066539b230 /mobile-widgets/qml/MapWidgetError.qml | |
parent | 6ce4239884780fafdf641fa52a2a8c7a0a02450d (diff) | |
download | subsurface-956b45ddfda060fcd818659ee05618ed2e4bfcab.tar.gz |
map-widget: move the widget and its resources to 'map-widget'
Move all the map widget platform agnostic files to the
<subsurface-root>/map-widget folder.
This avoids the confusion about the desktop version of subsurface
using mobile components. The map widget is planned as a shared
component between the mobile and desktop versions.
desktop-widgets/mapwidget[.h/.cpp] still remain as those are specific
to the desktop version.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Diffstat (limited to 'mobile-widgets/qml/MapWidgetError.qml')
-rw-r--r-- | mobile-widgets/qml/MapWidgetError.qml | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/mobile-widgets/qml/MapWidgetError.qml b/mobile-widgets/qml/MapWidgetError.qml deleted file mode 100644 index 346e95f07..000000000 --- a/mobile-widgets/qml/MapWidgetError.qml +++ /dev/null @@ -1,13 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0 -import QtQuick 2.0 - -Item { - Text { - anchors.fill: parent - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - color: "red" - text: qsTr("MapWidget.qml failed to load! -The QML modules QtPositioning and QtLocation could be missing!") - } -} |