diff options
Diffstat (limited to 'juk/sortedstringlist.h')
-rw-r--r-- | juk/sortedstringlist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/juk/sortedstringlist.h b/juk/sortedstringlist.h index 1ef94a2b..01386262 100644 --- a/juk/sortedstringlist.h +++ b/juk/sortedstringlist.h @@ -29,7 +29,7 @@ public: * or false otherwise. */ bool insert(const TQString &value); - bool tqcontains(const TQString &value) const; + bool contains(const TQString &value) const; bool remove(const TQString &value); /** @@ -42,7 +42,7 @@ public: private: class Node; - Node *tqfind(const TQString &value) const; + Node *find(const TQString &value) const; /** * The insertion implementation. Returns true if the item was already * present in the list. |