From 9a3f0aacd44fb866833ebcb852df3cd31475cb33 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 06:08:18 +0000 Subject: 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 --- konsole/konsole/keytrans.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'konsole/konsole/keytrans.cpp') 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 * 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() -- cgit v1.2.3