diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:17:16 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:17:16 -0600 |
commit | c7ce89fcae12a35ac8bfa9b908854c50ca0ceee2 (patch) | |
tree | 058c11d7f94face85bf6cedd2ec1c20ee47f1791 /kmouth/phrasebook/phrasebook.cpp | |
parent | 92994ee2036ac7c4c68747f67dbc0ecbaf4c250c (diff) | |
download | tdeaccessibility-c7ce89fcae12a35ac8bfa9b908854c50ca0ceee2.tar.gz tdeaccessibility-c7ce89fcae12a35ac8bfa9b908854c50ca0ceee2.zip |
Rename obsolete tq methods to standard names
Diffstat (limited to 'kmouth/phrasebook/phrasebook.cpp')
-rw-r--r-- | kmouth/phrasebook/phrasebook.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kmouth/phrasebook/phrasebook.cpp b/kmouth/phrasebook/phrasebook.cpp index 6188a8a..ffa3ff2 100644 --- a/kmouth/phrasebook/phrasebook.cpp +++ b/kmouth/phrasebook/phrasebook.cpp @@ -151,7 +151,7 @@ TQCString encodeString (const TQString str) { TQCString res = ""; for (int i = 0; i < (int)str.length(); i++) { TQChar ch = str.at(i); - ushort uc = ch.tqunicode(); + ushort uc = ch.unicode(); TQCString number; number.setNum(uc); if ((uc>127) || (uc<32) || (ch=='<') || (ch=='>') || (ch=='&') || (ch==';')) res = res + "&#" + number + ";"; |