summaryrefslogtreecommitdiffstats
path: root/kabc/frontend
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
commit4c6f8d69e2d1501837affb472c4eb8fec4462240 (patch)
tree766a8ad7939fcf3eec534184c36bd0e0f80489e2 /kabc/frontend
parent469cc56a805bd3d6940d54adbef554877c29853c (diff)
downloadtdepim-4c6f8d69e2d1501837affb472c4eb8fec4462240.tar.gz
tdepim-4c6f8d69e2d1501837affb472c4eb8fec4462240.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kabc/frontend')
-rw-r--r--kabc/frontend/mainWindow.ui.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kabc/frontend/mainWindow.ui.h b/kabc/frontend/mainWindow.ui.h
index 0740d9cf..421c0d33 100644
--- a/kabc/frontend/mainWindow.ui.h
+++ b/kabc/frontend/mainWindow.ui.h
@@ -139,8 +139,8 @@ void MainWindow::readAddressee( const KABC::Addressee &a )
TQStringList customs = a.customs();
TQStringList::ConstIterator it5;
for( it5 = customs.begin(); it5 != customs.end(); ++it5 ) {
- int posDash = (*it5).tqfind( "-" );
- int posColon = (*it5).tqfind( ":" );
+ int posDash = (*it5).find( "-" );
+ int posColon = (*it5).find( ":" );
TQString app = (*it5).left( posDash );
TQString cname = (*it5).mid( posDash + 1, posColon - posDash - 1 );
@@ -583,8 +583,8 @@ void MainWindow::editCustom()
this );
if ( !ok || name.isEmpty() ) return;
- int posDash = name.tqfind( "-" );
- int posColon = name.tqfind( ":" );
+ int posDash = name.find( "-" );
+ int posColon = name.find( ":" );
TQString app = name.left( posDash );
TQString cname = name.mid( posDash + 1, posColon - posDash - 1 );
@@ -610,8 +610,8 @@ void MainWindow::newCustom()
this );
if ( !ok || name.isEmpty() ) return;
- int posDash = name.tqfind( "-" );
- int posColon = name.tqfind( ":" );
+ int posDash = name.find( "-" );
+ int posColon = name.find( ":" );
TQString app = name.left( posDash );
TQString cname = name.mid( posDash + 1, posColon - posDash - 1 );