Remove trailing white spaces
authorRobert Loehning <robert.loehning@digia.com>
Thu, 29 Nov 2012 14:51:27 +0000 (15:51 +0100)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Thu, 29 Nov 2012 16:42:07 +0000 (17:42 +0100)
Change-Id: I4ff016476e73870405377f76b13fb2e74749a047
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
src/corelib/doc/snippets/qdebug/qdebugsnippet.cpp

index dbbce72..52f095a 100644 (file)
@@ -54,7 +54,7 @@ public:
 QDebug operator<<(QDebug dbg, const Coordinate &c)
 {
     dbg.nospace() << "(" << c.x() << ", " << c.y() << ")";
-    
+
     return dbg.space();
 }
 //! [0]