mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
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
29a714acc3
commit
1363e28f8b
1 changed files with 2 additions and 2 deletions
|
@ -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()));
|
||||
|
|
Loading…
Reference in a new issue