diff options
author | Anton Lundin <glance@acc.umu.se> | 2014-01-15 09:30:33 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-01-15 15:49:43 +0700 |
commit | 1363e28f8bcfb96913e24f12f29b1e3b94ab581a (patch) | |
tree | f05b93c7c1d25e454f7ac3c2c28ae3ff119295e0 /qt-ui | |
parent | 29a714acc33e5fffbb8dc8079947e8eb2d600e16 (diff) | |
download | subsurface-1363e28f8bcfb96913e24f12f29b1e3b94ab581a.tar.gz |
Add some missing ; in the Qt5 path
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/subsurfacewebservices.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/subsurfacewebservices.cpp b/qt-ui/subsurfacewebservices.cpp index df4b10a11..6a94393f5 100644 --- a/qt-ui/subsurfacewebservices.cpp +++ b/qt-ui/subsurfacewebservices.cpp @@ -683,7 +683,7 @@ void DivelogsDeWebServices::startDownload() body.addQueryItem("user", ui.userID->text()); body.addQueryItem("pass", ui.password->text()); - reply = manager()->post(request, body.query(QUrl::FullyEncoded).toLatin1()) + reply = manager()->post(request, body.query(QUrl::FullyEncoded).toLatin1()); #endif connect(reply, SIGNAL(finished()), this, SLOT(listDownloadFinished())); connect(reply, SIGNAL(error(QNetworkReply::NetworkError)), @@ -729,7 +729,7 @@ void DivelogsDeWebServices::listDownloadFinished() body.addQueryItem("pass", ui.password->text()); body.addQueryItem("ids", diveList.idList); - reply = manager()->post(request, body.query(QUrl::FullyEncoded).toLatin1()) + reply = manager()->post(request, body.query(QUrl::FullyEncoded).toLatin1()); #endif connect(reply, SIGNAL(readyRead()), this, SLOT(saveToZipFile())); |