summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2012-05-03 15:13:46 +0200
committerQt by Nokia <qt-info@nokia.com>2012-05-03 17:30:35 +0200
commitfd43e238233142bdd6b045c69f9cbb56b3601984 (patch)
tree2d6262f47899458054faa9e4a278db45c3c7ab0f /tools
parentaa38299ebe4d330b786d09003e5c06909447eae4 (diff)
downloadqtxmlpatterns-fd43e238233142bdd6b045c69f9cbb56b3601984.tar.gz
Change remaining uses of {to,from}Ascii to {to,from}Latin1 [other]
This operation should be a no-op anyway, since at this point in time, the fromAscii and toAscii functions simply call their fromLatin1 and toLatin1 counterparts. Task-number: QTBUG-21872 Change-Id: Ib84e307f486cb3049f0b61a667caa40799394f86 Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/xmlpatterns/qapplicationargumentparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/xmlpatterns/qapplicationargumentparser.cpp b/tools/xmlpatterns/qapplicationargumentparser.cpp
index 008d905..62a15cc 100644
--- a/tools/xmlpatterns/qapplicationargumentparser.cpp
+++ b/tools/xmlpatterns/qapplicationargumentparser.cpp
@@ -299,7 +299,7 @@ void QApplicationArgumentParserPrivate::displayVersion() const
{
QTextStream out(stderr);
- out << tr("%1 version %2 using Qt %3").arg(QCoreApplication::applicationName(), applicationVersion, QString::fromAscii(qVersion()))
+ out << tr("%1 version %2 using Qt %3").arg(QCoreApplication::applicationName(), applicationVersion, QString::fromLatin1(qVersion()))
<< endl;
}