diff options
author | willemferguson <willemferguson@zoology.up.ac.za> | 2019-12-09 20:58:20 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-25 02:57:42 +0900 |
commit | b6c3cdb20cbcb1654c83d555d278476f55d3d103 (patch) | |
tree | 67c566c81e286391f804660f7cd0017ada058902 /core/settings/qPref.cpp | |
parent | b24caa4e2db42d300e3806ca3d13ce72202a24d8 (diff) | |
download | subsurface-b6c3cdb20cbcb1654c83d555d278476f55d3d103.tar.gz |
Preferences UI: add dive log tab
This adds a tab for dive log - related preferences.
A suitable test programs is still required.
Signed-off-by: willemferguson <willemferguson@zoology.up.ac.za>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/settings/qPref.cpp')
-rw-r--r-- | core/settings/qPref.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/settings/qPref.cpp b/core/settings/qPref.cpp index 6b18d1915..4138b0c82 100644 --- a/core/settings/qPref.cpp +++ b/core/settings/qPref.cpp @@ -16,6 +16,7 @@ #include "qPrefUpdateManager.h" #include "qPrefEquipment.h" #include "qPrefMedia.h" +#include "qPrefLog.h" #include <QtQml> #include <QQmlContext> @@ -42,6 +43,7 @@ void qPref::loadSync(bool doSync) qPrefUpdateManager::loadSync(doSync); qPrefEquipment::loadSync(doSync); qPrefMedia::loadSync(doSync); + qPrefLog::loadSync(doSync); } Q_DECLARE_METATYPE(deco_mode); @@ -68,6 +70,7 @@ void qPref::registerQML(QQmlEngine *engine) ct->setContextProperty("PrefEquipment", qPrefUpdateManager::instance()); ct->setContextProperty("PrefMedia", qPrefUpdateManager::instance()); ct->setContextProperty("PrefClearDc", qPrefUpdateManager::instance()); + ct->setContextProperty("PrefLog", qPrefUpdateManager::instance()); } // Register special types |