summaryrefslogtreecommitdiffstats
path: root/tests/auto/qlocale
diff options
context:
space:
mode:
authorJanne Anttila <janne.anttila@digia.com>2009-08-11 12:12:07 (GMT)
committerJanne Anttila <janne.anttila@digia.com>2009-08-11 12:12:07 (GMT)
commit8f10c91b2fc5ccc2ffaca64db2fbb7e009bd5ae4 (patch)
treef890761f0739a56ac52a3e5b43a81f1b12c2769d /tests/auto/qlocale
parentf9fb5a00f351240eecac22d194252ac89fabb417 (diff)
downloadQt-8f10c91b2fc5ccc2ffaca64db2fbb7e009bd5ae4.zip
Qt-8f10c91b2fc5ccc2ffaca64db2fbb7e009bd5ae4.tar.gz
Qt-8f10c91b2fc5ccc2ffaca64db2fbb7e009bd5ae4.tar.bz2
Fixed qlocale autotest compile error for Symbian.
Diffstat (limited to 'tests/auto/qlocale')
-rw-r--r--tests/auto/qlocale/tst_qlocale.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qlocale/tst_qlocale.cpp b/tests/auto/qlocale/tst_qlocale.cpp
index 6301d40..1d7e67d 100644
--- a/tests/auto/qlocale/tst_qlocale.cpp
+++ b/tests/auto/qlocale/tst_qlocale.cpp
@@ -2042,7 +2042,7 @@ void tst_QLocale::symbianSystemLocale()
TBuf<50> s60FormattedDate;
TRAPD(err, s60Date.FormatL(s60FormattedDate, s60DateFormat));
QVERIFY(err == KErrNone);
- QString s60FinalResult = qt_TDes2QStringL(s60FormattedDate);
+ QString s60FinalResult = qt_TDesC2QString(s60FormattedDate);
QString finalResult = date.toString(dateFormat);
QCOMPARE(finalResult, s60FinalResult);