summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qdebug.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/io/qdebug.h')
-rw-r--r--src/corelib/io/qdebug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/io/qdebug.h b/src/corelib/io/qdebug.h
index 48b7538c8e..e14d31f38a 100644
--- a/src/corelib/io/qdebug.h
+++ b/src/corelib/io/qdebug.h
@@ -179,7 +179,7 @@ public:
{
QString buffer;
QDebug stream(&buffer);
- stream << object;
+ stream.nospace() << object;
return buffer;
}
@@ -188,7 +188,7 @@ public:
{
QString buffer;
QDebug stream(&buffer);
- stream << object;
+ stream.nospace() << object;
return buffer;
}
};