diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2017-07-20 16:50:16 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-07-28 07:31:11 -0700 |
commit | b7c4a7fbfc92ba359dfd39cf61ad56492b7b8004 (patch) | |
tree | a430728346a94c4e8c4da27468e70ee8007004a8 | |
parent | b0cf820bef0699934f61af686598f751115e44f6 (diff) | |
download | subsurface-b7c4a7fbfc92ba359dfd39cf61ad56492b7b8004.tar.gz |
qrc: use "MapWidget.qml" as a QRC alias
Apparently, if it's required to import a QML component inside any QML
file from resource, the compoment QRC alias has to have the same name
as the component - e.g. add QRC alias MapWidgetContextMenu.qml allows
creating a MapWidgetContextMenu compoment inside MapWidget.qml.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
-rw-r--r-- | desktop-widgets/mapwidget.cpp | 2 | ||||
-rw-r--r-- | subsurface.qrc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/desktop-widgets/mapwidget.cpp b/desktop-widgets/mapwidget.cpp index ffd711835..c378b9fb3 100644 --- a/desktop-widgets/mapwidget.cpp +++ b/desktop-widgets/mapwidget.cpp @@ -18,7 +18,7 @@ MapWidget::MapWidget(QWidget *parent) : QQuickWidget(parent) qmlRegisterType<MapLocationModel>("org.subsurfacedivelog.mobile", 1, 0, "MapLocationModel");
qmlRegisterType<MapLocation>("org.subsurfacedivelog.mobile", 1, 0, "MapLocation");
- setSource(QUrl(QStringLiteral("qrc:/mapwidget-qml")));
+ setSource(QUrl(QStringLiteral("qrc:/MapWidget.qml")));
setResizeMode(QQuickWidget::SizeRootObjectToView);
m_rootItem = qobject_cast<QQuickItem *>(rootObject());
diff --git a/subsurface.qrc b/subsurface.qrc index a41f479f1..f6ef2f417 100644 --- a/subsurface.qrc +++ b/subsurface.qrc @@ -1,6 +1,6 @@ <RCC> <qresource prefix="/"> - <file alias="mapwidget-qml">mobile-widgets/qml/MapWidget.qml</file> + <file alias="MapWidget.qml">mobile-widgets/qml/MapWidget.qml</file> <file alias="mapwidget-marker">mobile-widgets/qml/icons/mapwidget-marker.png</file> <file alias="mapwidget-marker-selected">mobile-widgets/qml/icons/mapwidget-marker-selected.png</file> <file alias="mapwidget-toggle-satellite">mobile-widgets/qml/icons/mapwidget-toggle-satellite.png</file> |