summaryrefslogtreecommitdiffstats
path: root/kbfxlib/data
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
commit055401d5dbcb7a509b9d6a6414ba3fc55a23eb82 (patch)
tree00c2014321c12930c673079eb5d736c80a85be45 /kbfxlib/data
parentba9755cbdc76d556757b1facb56e1c453f67025b (diff)
downloadkbfx-055401d5dbcb7a509b9d6a6414ba3fc55a23eb82.tar.gz
kbfx-055401d5dbcb7a509b9d6a6414ba3fc55a23eb82.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kbfx@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kbfxlib/data')
-rw-r--r--kbfxlib/data/kbfxdatasource.cpp2
-rw-r--r--kbfxlib/data/kbfxdatastack.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/kbfxlib/data/kbfxdatasource.cpp b/kbfxlib/data/kbfxdatasource.cpp
index 91d13c2..ea22dcd 100644
--- a/kbfxlib/data/kbfxdatasource.cpp
+++ b/kbfxlib/data/kbfxdatasource.cpp
@@ -46,7 +46,7 @@ KbfxDataSource::lookup ( TQString str )
TQString _searchStr = m_text+m_comment+m_description+m_keyWords;
- if ( _searchStr.tqcontains ( str,false ) > 0 )
+ if ( _searchStr.contains ( str,false ) > 0 )
return true;
return false;
diff --git a/kbfxlib/data/kbfxdatastack.cpp b/kbfxlib/data/kbfxdatastack.cpp
index 2b28ba0..3cdc29b 100644
--- a/kbfxlib/data/kbfxdatastack.cpp
+++ b/kbfxlib/data/kbfxdatastack.cpp
@@ -59,7 +59,7 @@ KbfxDataStack::getStack ( TQString name )
{
- if ( m_nameList.tqcontains ( name ) >0 )
+ if ( m_nameList.contains ( name ) >0 )
return m_stack[name];
else
{