diff options
author | Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com> | 2009-11-28 12:02:58 (GMT) |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com> | 2010-02-09 13:37:36 (GMT) |
commit | 4710521ab62540378816d3888936eace9686ff97 (patch) | |
tree | eff752a3c2e90e2adab3968fc6f8e33ecf6236ec | |
parent | dfe41315c16d20f5e61cd572204bb4194285bc63 (diff) | |
download | Qt-4710521ab62540378816d3888936eace9686ff97.zip Qt-4710521ab62540378816d3888936eace9686ff97.tar.gz Qt-4710521ab62540378816d3888936eace9686ff97.tar.bz2 |
Fixed setting back spaces when streaming a QPointF
When streaming a QPointF, it did not restore the inserting of spaces
like the QPoint does.
-rw-r--r-- | src/corelib/tools/qpoint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qpoint.cpp b/src/corelib/tools/qpoint.cpp index d60087f..9850ee7 100644 --- a/src/corelib/tools/qpoint.cpp +++ b/src/corelib/tools/qpoint.cpp @@ -374,7 +374,7 @@ QDebug operator<<(QDebug dbg, const QPoint &p) { QDebug operator<<(QDebug d, const QPointF &p) { d.nospace() << "QPointF(" << p.x() << ", " << p.y() << ')'; - return d; + return d.space(); } #endif |