Add some missing ; in the Qt5 path

Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Anton Lundin 2014-01-15 09:30:33 +01:00 committed by Dirk Hohndel
parent 29a714acc3
commit 1363e28f8b

View file

@ -683,7 +683,7 @@ void DivelogsDeWebServices::startDownload()
body.addQueryItem("user", ui.userID->text()); body.addQueryItem("user", ui.userID->text());
body.addQueryItem("pass", ui.password->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 #endif
connect(reply, SIGNAL(finished()), this, SLOT(listDownloadFinished())); connect(reply, SIGNAL(finished()), this, SLOT(listDownloadFinished()));
connect(reply, SIGNAL(error(QNetworkReply::NetworkError)), connect(reply, SIGNAL(error(QNetworkReply::NetworkError)),
@ -729,7 +729,7 @@ void DivelogsDeWebServices::listDownloadFinished()
body.addQueryItem("pass", ui.password->text()); body.addQueryItem("pass", ui.password->text());
body.addQueryItem("ids", diveList.idList); body.addQueryItem("ids", diveList.idList);
reply = manager()->post(request, body.query(QUrl::FullyEncoded).toLatin1()) reply = manager()->post(request, body.query(QUrl::FullyEncoded).toLatin1());
#endif #endif
connect(reply, SIGNAL(readyRead()), this, SLOT(saveToZipFile())); connect(reply, SIGNAL(readyRead()), this, SLOT(saveToZipFile()));