Qt 4.4 compilation fix

This commit is contained in:
Christophe Dumez 2010-04-07 10:00:32 +00:00
parent 3a1fc9ec77
commit 6b2e9f057b

View file

@ -216,6 +216,7 @@ QString downloadThread::errorCodeToString(QNetworkReply::NetworkError status) {
}
void downloadThread::ignoreSslErrors(QNetworkReply* reply,QList<QSslError> errors) {
Q_UNUSED(errors)
// Ignore all SSL errors
reply->ignoreSslErrors(errors);
reply->ignoreSslErrors();
}