diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-04-03 17:34:00 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-04-03 17:34:00 (GMT) |
commit | ecca301bd0a9db778b97852953b49f3971b6cecc (patch) | |
tree | 6330cb17a05de1d81f2277145151fb618f6924c7 /src/corelib/tools/qpoint.cpp | |
parent | 8feb69b5b59aa697793c377cc79afd9e873e2d6d (diff) | |
parent | 271a90c962ca6e419b2a6831f35a6a06be80a85d (diff) | |
download | Qt-ecca301bd0a9db778b97852953b49f3971b6cecc.zip Qt-ecca301bd0a9db778b97852953b49f3971b6cecc.tar.gz Qt-ecca301bd0a9db778b97852953b49f3971b6cecc.tar.bz2 |
Merge branch '4.6' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.6-integration
* '4.6' of scm.dev.nokia.troll.no:qt/oslo-staging-1:
Fix doc for deprecated QGridLayout::colSpacing: point to existing method
qDebug() << myPointF would remove spaces in following arguments.
Diffstat (limited to 'src/corelib/tools/qpoint.cpp')
-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 |