From 868201155fd677dbc6d14346f5ea61e82ebce27b Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Fri, 23 Jan 2015 16:19:11 +0100 Subject: QtCore: Use QDebugStateSaver in (almost) all QDebug operator<< Unify the behavior of the different operator<< by always using QDebugStateSaver (appending an optional space at exit), and making sure that the space(), nospace() setting isn't 'leaked'. Change-Id: I38e4f82fa6f7419d8b5edfc4dc37495af497e8ac Reviewed-by: Alex Blasche --- src/corelib/tools/qbitarray.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/corelib/tools/qbitarray.cpp') diff --git a/src/corelib/tools/qbitarray.cpp b/src/corelib/tools/qbitarray.cpp index 5c391d7e4f7..ddccd8cd021 100644 --- a/src/corelib/tools/qbitarray.cpp +++ b/src/corelib/tools/qbitarray.cpp @@ -772,18 +772,19 @@ QDataStream &operator>>(QDataStream &in, QBitArray &ba) #ifndef QT_NO_DEBUG_STREAM QDebug operator<<(QDebug dbg, const QBitArray &array) { + QDebugStateSaver saver(dbg); dbg.nospace() << "QBitArray("; for (int i = 0; i < array.size();) { if (array.testBit(i)) - dbg.nospace() << '1'; + dbg << '1'; else - dbg.nospace() << '0'; + dbg << '0'; i += 1; if (!(i % 4) && (i < array.size())) - dbg.nospace() << ' '; + dbg << ' '; } - dbg.nospace() << ')'; - return dbg.space(); + dbg << ')'; + return dbg; } #endif -- cgit v1.2.3