diff options
Diffstat (limited to 'deskutils/kdepim3/files/patch-kmail-utf8.diff')
-rw-r--r-- | deskutils/kdepim3/files/patch-kmail-utf8.diff | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/deskutils/kdepim3/files/patch-kmail-utf8.diff b/deskutils/kdepim3/files/patch-kmail-utf8.diff deleted file mode 100644 index 89b2346b9dd5..000000000000 --- a/deskutils/kdepim3/files/patch-kmail-utf8.diff +++ /dev/null @@ -1,15 +0,0 @@ -Index: kmaccount.cpp -=================================================================== ---- kmail/kmaccount.cpp (revision 656120) -+++ kmail/kmaccount.cpp (working copy) -@@ -399,7 +399,9 @@ QString KMAccount::encryptStr(const QStr - { - QString result; - for (uint i = 0; i < aStr.length(); i++) -- result += (aStr[i].unicode() < 0x20) ? aStr[i] : -+ /* yes, no typo. can't encode ' ' or '!' because -+ they're the unicode BOM. stupid scrambling. stupid. */ -+ result += (aStr[i].unicode() <= 0x21 ) ? aStr[i] : - QChar(0x1001F - aStr[i].unicode()); - return result; - } |