summaryrefslogtreecommitdiffstats
path: root/src/makeqpf/mainwindow.cpp
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2012-05-03 15:46:22 +0200
committerQt by Nokia <qt-info@nokia.com>2012-05-03 15:55:06 +0200
commit237032f93332a491b392669fe3a3fb5bd670f46d (patch)
tree9721c3ac68e33ec533025f63c383b2c823f9922b /src/makeqpf/mainwindow.cpp
parent1d500479de36c8d7709a5a029c9bdd57a52c1077 (diff)
Change uses of {to,from}Ascii to {to,from}Latin1 [other tools]
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: I1e82285ad996cb2796807260383d1d056b930d0e Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
Diffstat (limited to 'src/makeqpf/mainwindow.cpp')
-rw-r--r--src/makeqpf/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makeqpf/mainwindow.cpp b/src/makeqpf/mainwindow.cpp
index 5d8507be0..1da7db9c2 100644
--- a/src/makeqpf/mainwindow.cpp
+++ b/src/makeqpf/mainwindow.cpp
@@ -257,7 +257,7 @@ void MainWindow::populateCharacterRanges()
ellipsis = QLatin1String("...");
while (!f.atEnd()) {
- QString line = QString::fromAscii(f.readLine());
+ QString line = QString::fromLatin1(f.readLine());
if (line.endsWith(QLatin1Char('\n')))
line.chop(1);