summaryrefslogtreecommitdiffstats
path: root/libkdepim/categoryselectdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkdepim/categoryselectdialog.cpp')
-rw-r--r--libkdepim/categoryselectdialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libkdepim/categoryselectdialog.cpp b/libkdepim/categoryselectdialog.cpp
index 4eb072b1..982e1151 100644
--- a/libkdepim/categoryselectdialog.cpp
+++ b/libkdepim/categoryselectdialog.cpp
@@ -32,9 +32,9 @@
using namespace KPIM;
-CategorySelectDialog::CategorySelectDialog( KPimPrefs *prefs, TQWidget* parent,
+CategorySelectDialog::CategorySelectDialog( KPimPrefs *prefs, TQWidget* tqparent,
const char* name, bool modal )
- : KDialogBase::KDialogBase( parent, name, modal,
+ : KDialogBase::KDialogBase( tqparent, name, modal,
i18n("Select Categories"), Ok|Apply|Cancel|Help, Ok, true ),
mPrefs( prefs )
{
@@ -58,7 +58,7 @@ void CategorySelectDialog::setCategories( const TQStringList &categoryList )
TQStringList::ConstIterator it;
for ( it = categoryList.begin(); it != categoryList.end(); ++it )
- if ( mPrefs->mCustomCategories.find( *it ) == mPrefs->mCustomCategories.end() )
+ if ( mPrefs->mCustomCategories.tqfind( *it ) == mPrefs->mCustomCategories.end() )
mPrefs->mCustomCategories.append( *it );
for ( it = mPrefs->mCustomCategories.begin();