subsurface/map-widget/qml/MapWidgetError.qml
Lubomir I. Ivanov 956b45ddfd 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>
2017-11-05 14:48:56 -08:00

13 lines
303 B
QML

// 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!")
}
}