summaryrefslogtreecommitdiffstats
path: root/tests/auto/other/lancelot
diff options
context:
space:
mode:
authoraavit <qt_aavit@ovi.com>2012-03-21 09:50:35 +0100
committerQt by Nokia <qt-info@nokia.com>2012-03-22 18:59:45 +0100
commitb492f54b98989a186f75782f4d09de2c1c6d0fc0 (patch)
tree9ba5043cf8df956d324551caed66fd76bd1b248c /tests/auto/other/lancelot
parent63e56b90c57578b0fe1d2143a3fec08ba4d08fda (diff)
More UTF8 fix of raster autotest
This completes 6c98fd2, for systems where default codec is not UTF8. Change-Id: I94795785d5d172558c40c06bd3ef4ffaba1624c5 Reviewed-by: Jiang Jiang <jiang.jiang@nokia.com>
Diffstat (limited to 'tests/auto/other/lancelot')
-rw-r--r--tests/auto/other/lancelot/paintcommands.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/auto/other/lancelot/paintcommands.cpp b/tests/auto/other/lancelot/paintcommands.cpp
index d810e6e41a..969db62acb 100644
--- a/tests/auto/other/lancelot/paintcommands.cpp
+++ b/tests/auto/other/lancelot/paintcommands.cpp
@@ -848,8 +848,7 @@ void PaintCommands::command_import(QRegExp re)
QFileInfo fileinfo(*file);
m_commands[m_currentCommandIndex] = QString("# import file (%1) start").arg(fileinfo.fileName());
- QTextStream textFile(file);
- QString rawContent = textFile.readAll();
+ QString rawContent = QString::fromUtf8(file->readAll());
QStringList importedData = rawContent.split('\n', QString::SkipEmptyParts);
importedData.append(QString("# import file (%1) end ---").arg(fileinfo.fileName()));
insertAt(m_currentCommandIndex, importedData);