mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
956b45ddfd
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>
13 lines
303 B
QML
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!")
|
|
}
|
|
}
|