mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 22:35:27 +00:00
Remove support for Qt4 (part 4)
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
660459461c
commit
f88fb74b5b
1 changed files with 0 additions and 24 deletions
|
@ -23,9 +23,7 @@
|
|||
#include <unistd.h> // for dup(2)
|
||||
#endif
|
||||
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
||||
#include <QUrlQuery>
|
||||
#endif
|
||||
|
||||
#ifndef PATH_MAX
|
||||
#define PATH_MAX 4096
|
||||
|
@ -403,13 +401,9 @@ void SubsurfaceWebServices::buttonClicked(QAbstractButton *button)
|
|||
void SubsurfaceWebServices::startDownload()
|
||||
{
|
||||
QUrl url("http://api.hohndel.org/api/dive/get/");
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
|
||||
url.addQueryItem("login", ui.userID->text().toUpper());
|
||||
#else
|
||||
QUrlQuery query;
|
||||
query.addQueryItem("login", ui.userID->text().toUpper());
|
||||
url.setQuery(query);
|
||||
#endif
|
||||
|
||||
QNetworkRequest request;
|
||||
request.setUrl(url);
|
||||
|
@ -731,19 +725,11 @@ void DivelogsDeWebServices::startDownload()
|
|||
request.setRawHeader("User-Agent", userAgent.toUtf8());
|
||||
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/x-www-form-urlencoded");
|
||||
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
|
||||
QUrl body;
|
||||
body.addQueryItem("user", ui.userID->text());
|
||||
body.addQueryItem("pass", ui.password->text());
|
||||
|
||||
reply = manager()->post(request, body.encodedQuery());
|
||||
#else
|
||||
QUrlQuery body;
|
||||
body.addQueryItem("user", ui.userID->text());
|
||||
body.addQueryItem("pass", ui.password->text());
|
||||
|
||||
reply = manager()->post(request, body.query(QUrl::FullyEncoded).toLatin1());
|
||||
#endif
|
||||
connect(reply, SIGNAL(finished()), this, SLOT(listDownloadFinished()));
|
||||
connect(reply, SIGNAL(error(QNetworkReply::NetworkError)),
|
||||
this, SLOT(downloadError(QNetworkReply::NetworkError)));
|
||||
|
@ -776,22 +762,12 @@ void DivelogsDeWebServices::listDownloadFinished()
|
|||
request.setRawHeader("User-Agent", userAgent.toUtf8());
|
||||
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/x-www-form-urlencoded");
|
||||
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
|
||||
QUrl body;
|
||||
body.addQueryItem("user", ui.userID->text());
|
||||
body.addQueryItem("pass", ui.password->text());
|
||||
body.addQueryItem("ids", diveList.idList);
|
||||
|
||||
reply = manager()->post(request, body.encodedQuery());
|
||||
#else
|
||||
QUrlQuery body;
|
||||
body.addQueryItem("user", ui.userID->text());
|
||||
body.addQueryItem("pass", ui.password->text());
|
||||
body.addQueryItem("ids", diveList.idList);
|
||||
|
||||
reply = manager()->post(request, body.query(QUrl::FullyEncoded).toLatin1());
|
||||
#endif
|
||||
|
||||
connect(reply, SIGNAL(readyRead()), this, SLOT(saveToZipFile()));
|
||||
connectSignalsForDownload(reply);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue