summaryrefslogtreecommitdiffstats
path: root/kbarcode/batchwizard.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
commit33038ab0e8b8e7fb05093f953e4f6f724c6e2482 (patch)
tree6a5f53930c5919157cb0f1e928500f97ff8dde95 /kbarcode/batchwizard.cpp
parent7a4cd8d44ee83c7de058bb0da8ae6676166e9325 (diff)
downloadkbarcode-33038ab0e8b8e7fb05093f953e4f6f724c6e2482.tar.gz
kbarcode-33038ab0e8b8e7fb05093f953e4f6f724c6e2482.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kbarcode@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kbarcode/batchwizard.cpp')
-rw-r--r--kbarcode/batchwizard.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kbarcode/batchwizard.cpp b/kbarcode/batchwizard.cpp
index 7ae3b04..153aa81 100644
--- a/kbarcode/batchwizard.cpp
+++ b/kbarcode/batchwizard.cpp
@@ -251,8 +251,8 @@ void BatchWizard::setupPage10()
TQStringList formats = KImageIO::types( KImageIO::Writing );
comboFormat = new KComboBox( false, formatBox );
comboFormat->insertStringList( formats );
- if( formats.tqcontains( PNG_FORMAT ) )
- comboFormat->setCurrentItem( formats.tqfindIndex( PNG_FORMAT ) );
+ if( formats.contains( PNG_FORMAT ) )
+ comboFormat->setCurrentItem( formats.findIndex( PNG_FORMAT ) );
label->setBuddy( comboFormat );
TQVButtonGroup* imageNameGroup = new TQVButtonGroup( i18n("&Filename:"), imageBox );
@@ -762,7 +762,7 @@ void BatchWizard::addGroupCompletion( const TQString & group )
if( !group.isEmpty() )
{
TQStringList slist = compGroup->items();
- if(!slist.tqcontains( group ) )
+ if(!slist.contains( group ) )
compGroup->addItem( group );
}
}