diff options
author | Olivier Goffart <olivier.goffart@nokia.com> | 2011-03-01 13:10:08 (GMT) |
---|---|---|
committer | Olivier Goffart <olivier.goffart@nokia.com> | 2011-03-01 13:15:11 (GMT) |
commit | 124cc3c0dfe18c2e5027a0eee430ac03b48807c0 (patch) | |
tree | 20c289a0785786c124eef5908ed5a7cd276c2a45 /tests/auto/qstringbuilder1/stringbuilder.cpp | |
parent | 17a4f332f0d416af842145f0ebc7f2ebe7f33527 (diff) | |
download | Qt-124cc3c0dfe18c2e5027a0eee430ac03b48807c0.zip Qt-124cc3c0dfe18c2e5027a0eee430ac03b48807c0.tar.gz Qt-124cc3c0dfe18c2e5027a0eee430ac03b48807c0.tar.bz2 |
Wrap qPrintable inside QString
QString() is a no-op if string is already a QString
And it fixes the compilation if other types are use that do not have
toLocal8Bit such as QStringBuilder.
WebKit trunk has an instance of such usage.
Reviewed-by: Joao
Diffstat (limited to 'tests/auto/qstringbuilder1/stringbuilder.cpp')
-rw-r--r-- | tests/auto/qstringbuilder1/stringbuilder.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/auto/qstringbuilder1/stringbuilder.cpp b/tests/auto/qstringbuilder1/stringbuilder.cpp index b4f6334..1ea7347 100644 --- a/tests/auto/qstringbuilder1/stringbuilder.cpp +++ b/tests/auto/qstringbuilder1/stringbuilder.cpp @@ -110,4 +110,6 @@ void runScenario() r = string P ba; QCOMPARE(r, r2); #endif + + QCOMPARE(QByteArray(qPrintable(string P string)), QByteArray(string.toLatin1() + string.toLatin1())); } |