diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-03-26 21:31:41 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-03-26 21:49:19 -0700 |
commit | d4357b3b21c803a663d8f2cb1c0af2408a1cf2e8 (patch) | |
tree | decc9160db11b65d5707bf8154766264cc507f61 /qt-mobile | |
parent | 7434e4213b5771cf4d3c805b1ddc44716f087a83 (diff) | |
download | subsurface-d4357b3b21c803a663d8f2cb1c0af2408a1cf2e8.tar.gz |
QML UI: allow writing to App log from QML
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile')
-rw-r--r-- | qt-mobile/qmlmanager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-mobile/qmlmanager.h b/qt-mobile/qmlmanager.h index ae30d5884..2113a1dfe 100644 --- a/qt-mobile/qmlmanager.h +++ b/qt-mobile/qmlmanager.h @@ -67,7 +67,6 @@ public: QString logText() const; void setLogText(const QString &logText); - void appendTextToLog(const QString &newText); bool accessingCloud() const; void setAccessingCloud(bool status); @@ -115,6 +114,7 @@ public slots: void refreshDiveList(); void screenChanged(QScreen *screen); qreal lastDevicePixelRatio(); + void appendTextToLog(const QString &newText); private: QString m_cloudUserName; |