summaryrefslogtreecommitdiffstats
path: root/konsole/konsole/keytrans.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konsole/konsole/keytrans.cpp')
-rw-r--r--konsole/konsole/keytrans.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/konsole/konsole/keytrans.cpp b/konsole/konsole/keytrans.cpp
index bcf5228c7..da197a695 100644
--- a/konsole/konsole/keytrans.cpp
+++ b/konsole/konsole/keytrans.cpp
@@ -90,10 +90,10 @@ KeyTrans::KeyTrans(const TQString& path)
else
{
m_id = m_path;
- int i = m_id.tqfindRev('/');
+ int i = m_id.findRev('/');
if (i > -1)
m_id = m_id.mid(i+1);
- i = m_id.tqfindRev('.');
+ i = m_id.findRev('.');
if (i > -1)
m_id = m_id.left(i);
}
@@ -673,8 +673,8 @@ static TQIntDict<KeyTrans> * numb2keymap = 0L;
KeyTrans* KeyTrans::find(int numb)
{
- KeyTrans* res = numb2keymap->tqfind(numb);
- return res ? res : numb2keymap->tqfind(0);
+ KeyTrans* res = numb2keymap->find(numb);
+ return res ? res : numb2keymap->find(0);
}
KeyTrans* KeyTrans::find(const TQString &id)
@@ -686,7 +686,7 @@ KeyTrans* KeyTrans::find(const TQString &id)
return it.current();
++it;
}
- return numb2keymap->tqfind(0);
+ return numb2keymap->find(0);
}
int KeyTrans::count()