summaryrefslogtreecommitdiffstats
path: root/kresources/groupware/kabc_resourcegroupwareconfig.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kresources/groupware/kabc_resourcegroupwareconfig.cpp')
-rw-r--r--kresources/groupware/kabc_resourcegroupwareconfig.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kresources/groupware/kabc_resourcegroupwareconfig.cpp b/kresources/groupware/kabc_resourcegroupwareconfig.cpp
index cfe6ba98..7232fd1e 100644
--- a/kresources/groupware/kabc_resourcegroupwareconfig.cpp
+++ b/kresources/groupware/kabc_resourcegroupwareconfig.cpp
@@ -36,11 +36,11 @@
using namespace KABC;
-class AddressBookItem : public QCheckListItem
+class AddressBookItem : public TQCheckListItem
{
public:
- AddressBookItem( KListView *parent, const TQString &id )
- : TQCheckListItem( parent, "", CheckBox ),
+ AddressBookItem( KListView *tqparent, const TQString &id )
+ : TQCheckListItem( tqparent, "", CheckBox ),
mId( id )
{
setText( 0, mId );
@@ -58,8 +58,8 @@ class AddressBookItem : public QCheckListItem
TQString mId;
};
-ResourceGroupwareConfig::ResourceGroupwareConfig( TQWidget* parent, const char* name )
- : KRES::ConfigWidget( parent, name )
+ResourceGroupwareConfig::ResourceGroupwareConfig( TQWidget* tqparent, const char* name )
+ : KRES::ConfigWidget( tqparent, name )
{
TQGridLayout *mainLayout = new TQGridLayout( this, 7, 2, 0, KDialog::spacingHint() );
@@ -193,7 +193,7 @@ void ResourceGroupwareConfig::updateAddressBookView()
Groupware::AddressBook::List::ConstIterator abIt;
for ( abIt = addressBooks.begin(); abIt != addressBooks.end(); ++abIt ) {
AddressBookItem *item = new AddressBookItem( mAddressBookView, *abIt );
- if ( selectedRead.find( (*abIt).id ) != selectedRead.end() )
+ if ( selectedRead.tqfind( (*abIt).id ) != selectedRead.end() )
item->setOn( true );
mAddressBookBox->insertItem( (*abIt).name );