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 | 7ef01c0f34d9c6732d258154bcd3ba5a88280db9 (patch) | |
tree | 48ff13dab43883d19ecf2272b8ba72a013d5bc57 /juk/stringhash.h | |
parent | c05ca496a526b3fc192dbfafe0955e5824b22e08 (diff) | |
download | tdemultimedia-7ef01c0f34d9c6732d258154bcd3ba5a88280db9.tar.gz tdemultimedia-7ef01c0f34d9c6732d258154bcd3ba5a88280db9.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'juk/stringhash.h')
-rw-r--r-- | juk/stringhash.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/juk/stringhash.h b/juk/stringhash.h index 11ac3d7b..bf866958 100644 --- a/juk/stringhash.h +++ b/juk/stringhash.h @@ -42,7 +42,7 @@ public: /** * Returns true if the set contains the item \a value. */ - bool tqcontains(T value) const; + bool contains(T value) const; /** * Removes an item. Returns true if the item was present and false if not. @@ -227,7 +227,7 @@ bool Hash<T>::insert(T value) } template <class T> -bool Hash<T>::tqcontains(T value) const +bool Hash<T>::contains(T value) const { int h = hash(value); Node *i = m_table[h]; |