summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/uic/tst_uic.cpp
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2012-05-02 16:32:26 +0200
committerQt by Nokia <qt-info@nokia.com>2012-05-04 12:48:06 +0200
commitfba4d96750523dcb64855715a981755761110ea5 (patch)
tree58e8cca632d26918597fea484b3b2c6bc612940c /tests/auto/tools/uic/tst_uic.cpp
parent276776f50369580f33ec01b22aa928e48358a0f7 (diff)
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: Ib1eaf42679ab5db4005192c3d00ba79e43edfcca Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Diffstat (limited to 'tests/auto/tools/uic/tst_uic.cpp')
-rw-r--r--tests/auto/tools/uic/tst_uic.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/tools/uic/tst_uic.cpp b/tests/auto/tools/uic/tst_uic.cpp
index 0ea22968db..f77d71e64e 100644
--- a/tests/auto/tools/uic/tst_uic.cpp
+++ b/tests/auto/tools/uic/tst_uic.cpp
@@ -93,7 +93,7 @@ void tst_uic::initTestCase()
const QStringList outLines = out.split(QLatin1Char('\n'));
// Print version
QString msg = QString::fromLatin1("uic test built %1 running in '%2' using: ").
- arg(QString::fromAscii(__DATE__), QDir::currentPath());
+ arg(QString::fromLatin1(__DATE__), QDir::currentPath());
if (!outLines.empty())
msg += outLines.front();
qDebug() << msg;