summaryrefslogtreecommitdiffstats
path: root/juk/sortedstringlist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'juk/sortedstringlist.cpp')
-rw-r--r--juk/sortedstringlist.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/juk/sortedstringlist.cpp b/juk/sortedstringlist.cpp
index 904c5f01..b952067b 100644
--- a/juk/sortedstringlist.cpp
+++ b/juk/sortedstringlist.cpp
@@ -44,9 +44,9 @@ bool SortedStringList::insert(const TQString &value)
return BSTInsert(value);
}
-bool SortedStringList::tqcontains(const TQString &value) const
+bool SortedStringList::contains(const TQString &value) const
{
- return tqfind(value);
+ return find(value);
}
SortedStringList::Node *SortedStringList::treeMinimum(Node *n) const
@@ -73,7 +73,7 @@ SortedStringList::Node *SortedStringList::treeSuccessor(Node *n) const
bool SortedStringList::remove(const TQString &value)
{
- Node *n = tqfind(value);
+ Node *n = find(value);
if(!n)
return false;
@@ -122,7 +122,7 @@ TQStringList SortedStringList::values() const
// private methods
////////////////////////////////////////////////////////////////////////////////
-SortedStringList::Node *SortedStringList::tqfind(const TQString &value) const
+SortedStringList::Node *SortedStringList::find(const TQString &value) const
{
Node *n = m_root;
while(n && value != n->key) {