diff options
author | Shenghua Su <shenghua.su@tieto.com> | 2010-02-17 11:03:08 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2010-02-17 11:46:54 (GMT) |
commit | 33915e18f1e82c39b71b1f3f56fa1deb1ec51dfa (patch) | |
tree | 5e9541de632bc99dc0c0161619bf4a5093617745 /tests/auto/qlocale | |
parent | 00f1ec35393cf8cc5b96fc11dd1e35078d02ba0a (diff) | |
download | Qt-33915e18f1e82c39b71b1f3f56fa1deb1ec51dfa.zip Qt-33915e18f1e82c39b71b1f3f56fa1deb1ec51dfa.tar.gz Qt-33915e18f1e82c39b71b1f3f56fa1deb1ec51dfa.tar.bz2 |
remove debug info
Merge-request: 455
Reviewed-by: Thiago Macieira <thiago.macieira@nokia.com>
Diffstat (limited to 'tests/auto/qlocale')
-rw-r--r-- | tests/auto/qlocale/tst_qlocale.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qlocale/tst_qlocale.cpp b/tests/auto/qlocale/tst_qlocale.cpp index ff77db1..c9095ed 100644 --- a/tests/auto/qlocale/tst_qlocale.cpp +++ b/tests/auto/qlocale/tst_qlocale.cpp @@ -2027,7 +2027,7 @@ void tst_QLocale::QTBUG_7898() //QString dateTimeStr = QString("Monday, January 5, 2009 11:48:32 AM"); // with no blank space char after "AM", call "toDateTime" will get invalid value QString dateTimeStr = QString("Monday, January 5, 2009 11:48:32 AM "); - QDateTime value1 = locale.toDateTime(dateTimeStr , locale.dateTimeFormat(QLocale::LongFormat));qDebug()<<locale.toString(value1); + QDateTime value1 = locale.toDateTime(dateTimeStr , locale.dateTimeFormat(QLocale::LongFormat)); QDateTime value2 = locale.toDateTime(dateTimeStr , QLocale::LongFormat); QCOMPARE(value1.isValid(), value2.isValid()); if (value1.isValid()) { |