diff options
Diffstat (limited to 'launcher/net/NetAction.h')
-rw-r--r-- | launcher/net/NetAction.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/net/NetAction.h b/launcher/net/NetAction.h index ab9322c2..54eddc72 100644 --- a/launcher/net/NetAction.h +++ b/launcher/net/NetAction.h @@ -62,7 +62,8 @@ class NetAction : public Task { virtual void downloadFinished() = 0; virtual void downloadReadyRead() = 0; - virtual void sslErrors(const QList<QSslError>& errors) { + virtual void sslErrors(const QList<QSslError>& errors) + { int i = 1; for (auto error : errors) { qCritical() << "Network SSL Error #" << i << " : " << error.errorString(); @@ -70,7 +71,6 @@ class NetAction : public Task { qCritical() << "Certificate in question:\n" << cert.toText(); i++; } - }; public slots: |