diff options
author | David Faure <faure@kde.org> | 2010-04-03 17:23:56 (GMT) |
---|---|---|
committer | Benjamin Poulain <benjamin.poulain@nokia.com> | 2010-04-03 17:23:56 (GMT) |
commit | f1550140010d5fdd431bbbc190d11848107bbdb8 (patch) | |
tree | 183cf6f82bb66d244e247ff89a15aa0c12744447 /src | |
parent | 8feb69b5b59aa697793c377cc79afd9e873e2d6d (diff) | |
download | Qt-f1550140010d5fdd431bbbc190d11848107bbdb8.zip Qt-f1550140010d5fdd431bbbc190d11848107bbdb8.tar.gz Qt-f1550140010d5fdd431bbbc190d11848107bbdb8.tar.bz2 |
qDebug() << myPointF would remove spaces in following arguments.
Merge-request: 544
Reviewed-by: Benjamin Poulain <benjamin.poulain@nokia.com>
Diffstat (limited to 'src')
-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 |