diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:23:13 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:23:13 -0600 |
commit | ba2a3ce341c0c71bbbcf350fcbcd60c552220b31 (patch) | |
tree | 08ba9504290f461f1244dded6b37fc4db00847ab /kmail/kmaccount.cpp | |
parent | d5b298be14c173d62e8fbc6a3803ba8f657f3dcb (diff) | |
download | tdepim-ba2a3ce341c0c71bbbcf350fcbcd60c552220b31.tar.gz tdepim-ba2a3ce341c0c71bbbcf350fcbcd60c552220b31.zip |
Rename obsolete tq methods to standard names
Diffstat (limited to 'kmail/kmaccount.cpp')
-rw-r--r-- | kmail/kmaccount.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kmail/kmaccount.cpp b/kmail/kmaccount.cpp index 72a68c655..1ece4c510 100644 --- a/kmail/kmaccount.cpp +++ b/kmail/kmaccount.cpp @@ -426,9 +426,9 @@ TQString KMAccount::encryptStr(const TQString &aStr) TQString result; for (uint i = 0; i < aStr.length(); i++) /* yes, no typo. can't encode ' ' or '!' because - they're the tqunicode BOM. stupid scrambling. stupid. */ - result += (aStr[i].tqunicode() <= 0x21 ) ? aStr[i] : - TQChar(0x1001F - aStr[i].tqunicode()); + they're the unicode BOM. stupid scrambling. stupid. */ + result += (aStr[i].unicode() <= 0x21 ) ? aStr[i] : + TQChar(0x1001F - aStr[i].unicode()); return result; } |