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:
parent
8112f193bd
commit
a1b9d353e8
@ -674,7 +674,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)),
|
||||
@ -720,7 +720,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()));
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user