summaryrefslogtreecommitdiff
path: root/utils/themeeditor/gui/editorwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/themeeditor/gui/editorwindow.cpp')
-rw-r--r--utils/themeeditor/gui/editorwindow.cpp2
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)
874 QFile fout(filename); 874 QFile fout(filename);
875 fout.open(QFile::WriteOnly); 875 fout.open(QFile::WriteOnly);
876 876
877 fout.write(contents.toAscii()); 877 fout.write(contents.toLatin1());
878 878
879 fout.close(); 879 fout.close();
880} 880}