summaryrefslogtreecommitdiffstats
path: root/konsole/konsole/keytrans.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit9a3f0aacd44fb866833ebcb852df3cd31475cb33 (patch)
tree9f699684624f4e78e13e7dd2393a103cc6fa8274 /konsole/konsole/keytrans.cpp
parent341ad02235b9c85cd31782225181ed475b74eaa3 (diff)
downloadtdebase-9a3f0aacd44fb866833ebcb852df3cd31475cb33.tar.gz
tdebase-9a3f0aacd44fb866833ebcb852df3cd31475cb33.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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()