blob: 48b0095e4960674d88d9f507e2cc874aec816bfb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// SPDX-License-Identifier: GPL-2.0
import QtQuick 2.5
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!")
}
}
|