summaryrefslogtreecommitdiffstats
path: root/kdecore/kcompletion_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdecore/kcompletion_private.h')
-rw-r--r--kdecore/kcompletion_private.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kdecore/kcompletion_private.h b/kdecore/kcompletion_private.h
index 6b7151341..35c846593 100644
--- a/kdecore/kcompletion_private.h
+++ b/kdecore/kcompletion_private.h
@@ -99,7 +99,7 @@ public:
// Returns a child of this node matching ch, if available.
// Otherwise, returns 0L
- inline KCompTreeNode * tqfind( const TQChar& ch ) const {
+ inline KCompTreeNode * find( const TQChar& ch ) const {
KCompTreeNode * cur = myChildren.begin();
while (cur && (*cur != ch)) cur = cur->next;
return cur;
@@ -118,7 +118,7 @@ public:
inline const KCompTreeChildren * children() const {
return &myChildren;
}
- inline const KCompTreeNode * tqchildAt(int index) const {
+ inline const KCompTreeNode * childAt(int index) const {
return myChildren.at(index);
}
inline const KCompTreeNode * firstChild() const {