summaryrefslogtreecommitdiffstats
path: root/src/network/ssl/qsslkey_p.cpp
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@theqtcompany.com>2015-02-11 10:22:01 +0100
committerKai Koehne <kai.koehne@theqtcompany.com>2015-02-12 10:08:20 +0000
commitcd83859bd6310a2cf0a67c489aa597dc87e326b4 (patch)
treea6c9472f4e668035775b4f9260a2e8d3f02baf27 /src/network/ssl/qsslkey_p.cpp
parent7997e56a2e5f35fa19da9ccb5dc89586882d951b (diff)
Network: Fix operator<<(QDebug, ...) operations
Use the QDebugStateSaver saver(debug); debug.resetFormat().nospace(); idiom to unify the formatting and whitespace handling. Change-Id: Id346d63b3f589b60ca19e4459271d587f1a0c003 Reviewed-by: Richard J. Moore <rich@kde.org>
Diffstat (limited to 'src/network/ssl/qsslkey_p.cpp')
-rw-r--r--src/network/ssl/qsslkey_p.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/network/ssl/qsslkey_p.cpp b/src/network/ssl/qsslkey_p.cpp
index c18e713ef6..55a2ab7108 100644
--- a/src/network/ssl/qsslkey_p.cpp
+++ b/src/network/ssl/qsslkey_p.cpp
@@ -444,9 +444,10 @@ bool QSslKey::operator==(const QSslKey &other) const
*/
#ifndef QT_NO_DEBUG_STREAM
-class QDebug;
QDebug operator<<(QDebug debug, const QSslKey &key)
{
+ QDebugStateSaver saver(debug);
+ debug.resetFormat().nospace();
debug << "QSslKey("
<< (key.type() == QSsl::PublicKey ? "PublicKey" : "PrivateKey")
<< ", " << (key.algorithm() == QSsl::Opaque ? "OPAQUE" :