summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/diveshareexportdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'desktop-widgets/diveshareexportdialog.cpp')
-rw-r--r--desktop-widgets/diveshareexportdialog.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop-widgets/diveshareexportdialog.cpp b/desktop-widgets/diveshareexportdialog.cpp
index 435f5366e..c6a7771d8 100644
--- a/desktop-widgets/diveshareexportdialog.cpp
+++ b/desktop-widgets/diveshareexportdialog.cpp
@@ -4,6 +4,7 @@
#include "save-html.h"
#include "subsurfacewebservices.h"
#include "helpers.h"
+#include "subsurface-core/cloudstorage.h"
#include <QDesktopServices>
#include <QSettings>
@@ -135,7 +136,7 @@ void DiveShareExportDialog::doUpload()
if (ui->txtUID->text().length() != 0)
request.setRawHeader("X-UID", ui->txtUID->text().toUtf8());
- reply = WebServices::manager()->put(request, json_data);
+ reply = manager()->put(request, json_data);
QObject::connect(reply, SIGNAL(finished()), this, SLOT(finishedSlot()));
}