diff options
Diffstat (limited to 'mobile-widgets/qmlmanager.cpp')
-rw-r--r-- | mobile-widgets/qmlmanager.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index e1e5df0e5..21507c278 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -47,6 +47,8 @@ #include "core/trip.h" #include "core/exportfuncs.h" #include "core/worldmap-save.h" +#include "core/uploadDiveLogsDE.h" + QMLManager *QMLManager::m_instance = NULL; bool noCloudToCloud = false; @@ -2190,10 +2192,7 @@ void QMLManager::exportToWEB(export_types type, QString userId, QString password switch (type) { case EX_DIVELOGS_DE: - // TO BE IMPLEMENTED - // Current call in Desktop-widgets - // DivelogsDeWebServices::instance()-> - // prepareDivesForUpload(ui->exportSelected->isChecked()); + uploadDiveLogsDE::instance()->doUpload(false, userId, password); break; case EX_DIVESHARE: // TO BE IMPLEMENTED @@ -2205,5 +2204,4 @@ void QMLManager::exportToWEB(export_types type, QString userId, QString password qDebug() << "upload to unknown type " << type << " using " << userId << "/" << password << " remove names " << anonymize; break; } - qDebug() << "upload NOT implemented type " << type << " using " << userId << "/" << password << " remove names " << anonymize; } |