diff options
author | 2018-06-20 13:23:59 +0900 | |
---|---|---|
committer | 2018-06-20 13:23:59 +0900 | |
commit | b75eae95c194452499ba73e606c0bc0b41d3fb32 (patch) | |
tree | 165facb9a74404c4ffec67ff4d06f8ff6430eb70 /mobile-widgets/qmlmanager.h | |
parent | 7f7e7cf51db13d9fbe0f3b67eb97a971dcf8cb29 (diff) | |
download | subsurface-b75eae95c194452499ba73e606c0bc0b41d3fb32.tar.gz |
QML UI: remove unused property
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qmlmanager.h')
-rw-r--r-- | mobile-widgets/qmlmanager.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mobile-widgets/qmlmanager.h b/mobile-widgets/qmlmanager.h index abc497e0c..0fe9dc171 100644 --- a/mobile-widgets/qmlmanager.h +++ b/mobile-widgets/qmlmanager.h @@ -50,7 +50,6 @@ class QMLManager : public QObject { Q_PROPERTY(bool DC_saveDump READ DC_saveDump WRITE DC_setSaveDump) Q_PROPERTY(bool DC_saveLog READ DC_saveLog WRITE DC_setSaveLog) Q_PROPERTY(int DC_deviceId READ DC_deviceId WRITE DC_setDeviceId) - Q_PROPERTY(int DC_diveId READ DC_diveId WRITE DC_setDiveId) public: QMLManager(); ~QMLManager(); @@ -87,9 +86,6 @@ public: int DC_deviceId() const; void DC_setDeviceId(int deviceId); - int DC_diveId() const; - void DC_setDiveId(int diveId); - Q_INVOKABLE QStringList getProductListFromVendor(const QString& vendor); Q_INVOKABLE int getMatchingAddress(const QString &vendor, const QString &product); Q_INVOKABLE int getDetectedVendorIndex(); |