From: Shane Kearns Date: Mon, 20 Feb 2012 16:40:55 +0000 (+0000) Subject: Make qget manual test compile without ssl support X-Git-Tag: qt-v5.0.0-alpha1~888 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3fe79f23a97323521eb0182f8b46b0d0fc9ce44b;p=profile%2Fivi%2Fqtbase.git Make qget manual test compile without ssl support Change-Id: I35f92328b79df1cfcae52fa6ff8290f260183aea Reviewed-by: Richard J. Moore --- diff --git a/tests/manual/qnetworkaccessmanager/qget/qget.cpp b/tests/manual/qnetworkaccessmanager/qget/qget.cpp index 86b05f8..44fb621 100644 --- a/tests/manual/qnetworkaccessmanager/qget/qget.cpp +++ b/tests/manual/qnetworkaccessmanager/qget/qget.cpp @@ -57,7 +57,9 @@ DownloadManager::DownloadManager() connect(&nam, SIGNAL(finished(QNetworkReply*)), this, SLOT(finished(QNetworkReply*))); connect(&nam, SIGNAL(authenticationRequired(QNetworkReply*, QAuthenticator*)), this, SLOT(authenticationRequired(QNetworkReply*, QAuthenticator*))); connect(&nam, SIGNAL(proxyAuthenticationRequired(const QNetworkProxy&, QAuthenticator*)), this, SLOT(proxyAuthenticationRequired(const QNetworkProxy&, QAuthenticator*))); +#ifndef QT_NO_SSL connect(&nam, SIGNAL(sslErrors(QNetworkReply*, const QList&)), this, SLOT(sslErrors(QNetworkReply*, const QList&))); +#endif } DownloadManager::~DownloadManager() @@ -117,6 +119,7 @@ void DownloadManager::proxyAuthenticationRequired(const QNetworkProxy& proxy, QA } } +#ifndef QT_NO_SSL void DownloadManager::sslErrors(QNetworkReply* reply, const QList& errors) { qDebug() << "sslErrors"; @@ -125,6 +128,7 @@ void DownloadManager::sslErrors(QNetworkReply* reply, const QList& er qDebug() << error.certificate().toPem(); } } +#endif DownloadItem::DownloadItem(QNetworkReply* r, QNetworkAccessManager& manager) : reply(r), nam(manager) { diff --git a/tests/manual/qnetworkaccessmanager/qget/qget.h b/tests/manual/qnetworkaccessmanager/qget/qget.h index c8ab9e3..40d75a3 100644 --- a/tests/manual/qnetworkaccessmanager/qget/qget.h +++ b/tests/manual/qnetworkaccessmanager/qget/qget.h @@ -87,7 +87,9 @@ private slots: void finished(QNetworkReply* reply); void authenticationRequired(QNetworkReply* reply, QAuthenticator* authenticator); void proxyAuthenticationRequired(const QNetworkProxy& proxy, QAuthenticator* authenticator); +#ifndef QT_NO_SSL void sslErrors(QNetworkReply* reply, const QList& errors); +#endif void downloadFinished(DownloadItem *item); private: QNetworkAccessManager nam;