summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qdebug.h
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2020-02-27 11:36:54 +0100
committerMitch Curtis <mitch.curtis@qt.io>2020-02-28 10:16:15 +0100
commit981c1fe15f68106b88d89b5e31c8a932b95bb635 (patch)
tree235599a4b78677b7782c583a8bc9434f4ea51a1f /src/corelib/io/qdebug.h
parent7ef6ddaf7af71ed6b630b44bbb31beb126e05a3c (diff)
QDebug::toString(): use nospace()
The intended use cases for toString() are the situations where you can't use operator<<, such as QVERIFY2, Q_ASSERT_X, etc., which means that it will often be used as an argument to e.g. QString::arg(), where the user has control over the structure of the message. For that reason, adding an extra space to the end is not necessary and just gets in the way. This amends 658b9697f9d85d4ed294810b4f60bafdbdd8e247. Change-Id: I0695e6809026a0f92ed783899da80de4fa2a1684 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io>
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;
}
};