diff options
Diffstat (limited to 'utils/themeeditor/gui/editorwindow.cpp')
-rw-r--r-- | utils/themeeditor/gui/editorwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/themeeditor/gui/editorwindow.cpp b/utils/themeeditor/gui/editorwindow.cpp index 71b0c07405..89c9d670aa 100644 --- a/utils/themeeditor/gui/editorwindow.cpp +++ b/utils/themeeditor/gui/editorwindow.cpp @@ -874,7 +874,7 @@ void EditorWindow::createFile(QString filename, QString contents) QFile fout(filename); fout.open(QFile::WriteOnly); - fout.write(contents.toAscii()); + fout.write(contents.toLatin1()); fout.close(); } |