From: Robert Loehning Date: Thu, 29 Nov 2012 14:51:27 +0000 (+0100) Subject: Remove trailing white spaces X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=26a9fc4e520ac41f8337bafe877c8686a53b7e66;p=profile%2Fivi%2Fqtbase.git Remove trailing white spaces Change-Id: I4ff016476e73870405377f76b13fb2e74749a047 Reviewed-by: Oswald Buddenhagen --- diff --git a/src/corelib/doc/snippets/qdebug/qdebugsnippet.cpp b/src/corelib/doc/snippets/qdebug/qdebugsnippet.cpp index dbbce72..52f095a 100644 --- a/src/corelib/doc/snippets/qdebug/qdebugsnippet.cpp +++ b/src/corelib/doc/snippets/qdebug/qdebugsnippet.cpp @@ -54,7 +54,7 @@ public: QDebug operator<<(QDebug dbg, const Coordinate &c) { dbg.nospace() << "(" << c.x() << ", " << c.y() << ")"; - + return dbg.space(); } //! [0]