diff options
author | Timothy Pearson <[email protected]> | 2011-12-21 14:07:30 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-21 14:07:30 -0600 |
commit | 68b0d93f005081933603e1d07d6ebece55cf4502 (patch) | |
tree | 75b69804a6d7855f437992b56df438c1805a3e42 /src/translators/tellico_xml.cpp | |
parent | 26f93a7d9105483b49ae930545ddb2873156fa8e (diff) | |
download | tellico-68b0d93f005081933603e1d07d6ebece55cf4502.tar.gz tellico-68b0d93f005081933603e1d07d6ebece55cf4502.zip |
Rename obsolete tq methods to standard names
Diffstat (limited to 'src/translators/tellico_xml.cpp')
-rw-r--r-- | src/translators/tellico_xml.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/translators/tellico_xml.cpp b/src/translators/tellico_xml.cpp index e82f134..bcfb412 100644 --- a/src/translators/tellico_xml.cpp +++ b/src/translators/tellico_xml.cpp @@ -77,7 +77,7 @@ TQString Tellico::XML::elementName(const TQString& name_) { } // next check first characters IS_DIGIT is defined in libxml/vali.d - for(uint i = 0; i < name.length() && (!IS_LETTER(name[i].tqunicode()) || name[i] == '_'); ++i) { + for(uint i = 0; i < name.length() && (!IS_LETTER(name[i].unicode()) || name[i] == '_'); ++i) { name = name.mid(1); } if(name.isEmpty() || XML::validXMLElementName(name)) { |