diff options
author | jan Iversen <jani@apache.org> | 2018-07-11 12:09:36 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-07-12 08:08:00 -0700 |
commit | ab05fe3cf83526ea63764a6c6587735e8b959527 (patch) | |
tree | b0556a7990142bda9c273d16efe5919e90a29342 /subsurface-helper.cpp | |
parent | 8cc0b6dbc14d26cd0fff14b7f0368b33433a0191 (diff) | |
download | subsurface-ab05fe3cf83526ea63764a6c6587735e8b959527.tar.gz |
desktop-widget: move qmlRegister from mapwidget to shared helper
Remove qmlRegister in desktop-widgets/mapwidget in order to have a shared
registration in subsurface-helper.cpp
Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'subsurface-helper.cpp')
-rw-r--r-- | subsurface-helper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subsurface-helper.cpp b/subsurface-helper.cpp index 161cdff76..6a2383f08 100644 --- a/subsurface-helper.cpp +++ b/subsurface-helper.cpp @@ -13,9 +13,9 @@ #include "profile-widget/qmlprofile.h" #include "core/downloadfromdcthread.h" #include "qt-models/diveimportedmodel.h" +#endif #include "map-widget/qmlmapwidgethelper.h" #include "qt-models/maplocationmodel.h" -#endif void register_qml_types() { @@ -43,6 +43,7 @@ void register_qml_types() rc = qmlRegisterType<DiveImportedModel>("org.subsurfacedivelog.mobile", 1, 0, "DCImportModel"); if (rc < 0) qDebug() << "ERROR: Cannot register DCImportModel, QML will not work!!"; +#endif rc = qmlRegisterType<MapWidgetHelper>("org.subsurfacedivelog.mobile", 1, 0, "MapWidgetHelper"); if (rc < 0) @@ -53,5 +54,4 @@ void register_qml_types() rc = qmlRegisterType<MapLocation>("org.subsurfacedivelog.mobile", 1, 0, "MapLocation"); if (rc < 0) qDebug() << "ERROR: Cannot register MapLocation, QML will not work!!"; -#endif } |