Fix build breakage

Introduced in commit 31462f150dff ("We already have a QNetworkAcessManager
global, use it").

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2016-01-26 09:49:47 -08:00
parent 7a682770ef
commit 6a8768ee26
4 changed files with 5 additions and 4 deletions

View file

@ -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()));
}