diff options
author | jan Iversen <jani@libreoffice.org> | 2018-06-09 16:59:02 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-06-09 21:19:46 +0200 |
commit | 470c218b79a582856aff6227a90147e0db52812b (patch) | |
tree | d232f5b099f723bfaee75eb801beb61884b79bf3 /mobile-widgets | |
parent | 807571a5887baa71f7271bf0fff2397090ec9489 (diff) | |
download | subsurface-470c218b79a582856aff6227a90147e0db52812b.tar.gz |
core: remove qml properties from downloadfromcthread
Remove Q_OBJECT and qml properties from DCDeviceData class
Remove DCDeviceData register from mobile-helper.cpp
Change DCDeviceData constructor to be without parameters
Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qmlmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index b6cf05850..08fa3060a 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -138,7 +138,7 @@ QMLManager::QMLManager() : m_locationServiceEnabled(false), m_selectedDiveTimestamp(0), m_credentialStatus(CS_UNKNOWN), alreadySaving(false), - m_device_data(new DCDeviceData(this)) + m_device_data(new DCDeviceData) { LOG_STP("qmlmgr starting"); m_instance = this; |