summaryrefslogtreecommitdiffstats
path: root/src/network/access
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/access
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/access')
-rw-r--r--src/network/access/qnetworkcookie.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/network/access/qnetworkcookie.cpp b/src/network/access/qnetworkcookie.cpp
index 0fe1f3981c..2b11e5f993 100644
--- a/src/network/access/qnetworkcookie.cpp
+++ b/src/network/access/qnetworkcookie.cpp
@@ -1034,8 +1034,10 @@ void QNetworkCookie::normalize(const QUrl &url)
#ifndef QT_NO_DEBUG_STREAM
QDebug operator<<(QDebug s, const QNetworkCookie &cookie)
{
- s.nospace() << "QNetworkCookie(" << cookie.toRawForm(QNetworkCookie::Full) << ')';
- return s.space();
+ QDebugStateSaver saver(s);
+ s.resetFormat().nospace();
+ s << "QNetworkCookie(" << cookie.toRawForm(QNetworkCookie::Full) << ')';
+ return s;
}
#endif