diff options
author | jan Iversen <jan@casacondor.com> | 2019-12-08 11:52:38 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-12 21:35:55 -0500 |
commit | 53069fe777f123697f6d7d06e1f86ebbd5366b40 (patch) | |
tree | ea329e20c221b47c0b208061a79a79e433700112 /mobile-widgets/qmlmanager.h | |
parent | dd183eaabf949624adcf89818fac4c32f624d178 (diff) | |
download | subsurface-53069fe777f123697f6d7d06e1f86ebbd5366b40.tar.gz |
mobile-widgets: activate uploadDiveShare in qmlmanager
Remove "TO BE IMPLEMENTED" and add call doUpload
Connect signal to signal in QMLManager to avoid registring the
upload class.
Signed-off-by: Jan Iversen <jan@casacondor.com>
Diffstat (limited to 'mobile-widgets/qmlmanager.h')
-rw-r--r-- | mobile-widgets/qmlmanager.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mobile-widgets/qmlmanager.h b/mobile-widgets/qmlmanager.h index 862a7c894..0c61615a0 100644 --- a/mobile-widgets/qmlmanager.h +++ b/mobile-widgets/qmlmanager.h @@ -298,6 +298,9 @@ signals: // From upload process void uploadFinish(bool success, const QString &text); void uploadProgress(qreal percentage); + +private slots: + void uploadFinishSlot(bool success, const QString &text, const QByteArray &html); }; #endif |