diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | 8cbd3f41229fc385698bfd9a5524ba2610777543 (patch) | |
tree | 05595d691d2d657866204352d65e5b85cfd30384 /lib/libchmfile/qt34.h | |
parent | 411ae7c171b854c759cc87a403add976a2b516ee (diff) | |
download | kchmviewer-8cbd3f41229fc385698bfd9a5524ba2610777543.tar.gz kchmviewer-8cbd3f41229fc385698bfd9a5524ba2610777543.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kchmviewer@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/libchmfile/qt34.h')
-rw-r--r-- | lib/libchmfile/qt34.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libchmfile/qt34.h b/lib/libchmfile/qt34.h index 6181c8b..d37c3a2 100644 --- a/lib/libchmfile/qt34.h +++ b/lib/libchmfile/qt34.h @@ -55,7 +55,7 @@ class LIBCHMCString bool isEmpty() const; void prepend(char c); char at(uint i) const; - void tqreplace(uint index, uint len, const char *str); + void replace(uint index, uint len, const char *str); void remove(uint index, uint len); LIBCHMCString lower(); @@ -90,10 +90,10 @@ class LIBCHMString TQString lower() const; const char *ascii() const; - int tqfind(char c, int index = -1) const; - int tqfind(const TQChar &c, int index) const; - int tqfind(const TQString &string, int index, bool cs) const; - int tqfindRev(char c) const; + int find(char c, int index = -1) const; + int find(const TQChar &c, int index) const; + int find(const TQString &string, int index, bool cs) const; + int findRev(char c) const; TQChar at(uint i) const; TQString left(uint len) const; LIBCHMString mid(uint index, uint len = 0xffffffff) const; @@ -116,7 +116,7 @@ class LIBCHMDir class LIBCHMStringList { public: - static bool tqcontains(const TQStringList &list, const TQString &string); + static bool contains(const TQStringList &list, const TQString &string); static TQStringList split(const TQRegExp ®exp, const TQString &string); }; |