diff options
Diffstat (limited to 'core/cloudstorage.cpp')
-rw-r--r-- | core/cloudstorage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/cloudstorage.cpp b/core/cloudstorage.cpp index 39d9a4d66..77d9153e9 100644 --- a/core/cloudstorage.cpp +++ b/core/cloudstorage.cpp @@ -81,11 +81,11 @@ void CloudStorageAuthenticate::uploadError(QNetworkReply::NetworkError) qDebug() << "Received error response from cloud storage backend:" << reply->errorString(); } -void CloudStorageAuthenticate::sslErrors(QList<QSslError> errorList) +void CloudStorageAuthenticate::sslErrors(const QList<QSslError> &errorList) { if (verbose) { qDebug() << "Received error response trying to set up https connection with cloud storage backend:"; - Q_FOREACH (QSslError err, errorList) { + for (QSslError err: errorList) { qDebug() << err.errorString(); } } |