aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-qtopia/notez/notez-1.1.0/fix-encoding.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-qtopia/notez/notez-1.1.0/fix-encoding.patch')
-rw-r--r--recipes-qtopia/notez/notez-1.1.0/fix-encoding.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/recipes-qtopia/notez/notez-1.1.0/fix-encoding.patch b/recipes-qtopia/notez/notez-1.1.0/fix-encoding.patch
deleted file mode 100644
index 54e809b..0000000
--- a/recipes-qtopia/notez/notez-1.1.0/fix-encoding.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- notez-1.1.0/editWindow.cpp.orig 2002-11-17 17:40:08 +0100
-+++ notez-1.1.0/editWindow.cpp 2004-12-22 14:02:13 +0100
-@@ -32,6 +32,7 @@
- } else {
-
- QTextStream inStream(&datei);
-+ inStream.setEncoding(QTextStream::UnicodeUTF8);
- editArea->setText(inStream.read());
- datei.close();
-
-@@ -53,6 +54,7 @@
- } else {
-
- QTextStream outStream(&datei);
-+ outStream.setEncoding(QTextStream::UnicodeUTF8);
- outStream << editArea->text();
- datei.close();
- this->accept();