summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qsize.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/tools/qsize.cpp')
-rw-r--r--src/corelib/tools/qsize.cpp13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/corelib/tools/qsize.cpp b/src/corelib/tools/qsize.cpp
index d91dd0d130..19227432f2 100644
--- a/src/corelib/tools/qsize.cpp
+++ b/src/corelib/tools/qsize.cpp
@@ -33,7 +33,8 @@
#include "qsize.h"
#include "qdatastream.h"
-#include "qdebug.h"
+
+#include <private/qdebug_p.h>
QT_BEGIN_NAMESPACE
@@ -440,7 +441,10 @@ QDataStream &operator>>(QDataStream &s, QSize &sz)
QDebug operator<<(QDebug dbg, const QSize &s)
{
QDebugStateSaver saver(dbg);
- dbg.nospace() << "QSize(" << s.width() << ", " << s.height() << ')';
+ dbg.nospace();
+ dbg << "QSize(";
+ QtDebugUtils::formatQSize(dbg, s);
+ dbg << ')';
return dbg;
}
#endif
@@ -867,7 +871,10 @@ QDataStream &operator>>(QDataStream &s, QSizeF &sz)
QDebug operator<<(QDebug dbg, const QSizeF &s)
{
QDebugStateSaver saver(dbg);
- dbg.nospace() << "QSizeF(" << s.width() << ", " << s.height() << ')';
+ dbg.nospace();
+ dbg << "QSizeF(";
+ QtDebugUtils::formatQSize(dbg, s);
+ dbg << ')';
return dbg;
}
#endif