diff options
Diffstat (limited to 'core/checkcloudconnection.cpp')
-rw-r--r-- | core/checkcloudconnection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/checkcloudconnection.cpp b/core/checkcloudconnection.cpp index ffe2094f6..b912160c1 100644 --- a/core/checkcloudconnection.cpp +++ b/core/checkcloudconnection.cpp @@ -76,11 +76,11 @@ bool CheckCloudConnection::checkServer() return false; } -void CheckCloudConnection::sslErrors(QList<QSslError> errorList) +void CheckCloudConnection::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(); } } |