summaryrefslogtreecommitdiffstats
path: root/libkdepim/addresseeselector.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkdepim/addresseeselector.cpp')
-rw-r--r--libkdepim/addresseeselector.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/libkdepim/addresseeselector.cpp b/libkdepim/addresseeselector.cpp
index c7e37817..70d587ba 100644
--- a/libkdepim/addresseeselector.cpp
+++ b/libkdepim/addresseeselector.cpp
@@ -227,8 +227,8 @@ class SelectionViewItem : public TQListViewItem
AddresseeSelector::AddresseeSelector( Selection *selection, TQWidget *tqparent, const char *name )
: TQWidget( tqparent, name ), mSelection( selection ), mManager( 0 )
{
- mMoveMapper = new TQSignalMapper( this );
- mRemoveMapper = new TQSignalMapper( this );
+ mMoveMapper = new TQSignalMapper( TQT_TQOBJECT(this) );
+ mRemoveMapper = new TQSignalMapper( TQT_TQOBJECT(this) );
mAddressBookManager = new AddressBookManager();
@@ -300,7 +300,7 @@ void AddresseeSelector::initGUI()
connect( listView, TQT_SIGNAL( doubleClicked( TQListViewItem*, const TQPoint&, int ) ),
mRemoveMapper, TQT_SLOT( map() ) );
- mRemoveMapper->setMapping( listView, i );
+ mRemoveMapper->setMapping( TQT_TQOBJECT(listView), i );
TQVBoxLayout *buttonLayout = new TQVBoxLayout( this );
buttonLayout->tqsetAlignment( TQt::AlignBottom );
@@ -313,7 +313,7 @@ void AddresseeSelector::initGUI()
connect( moveButton, TQT_SIGNAL( clicked() ),
mMoveMapper, TQT_SLOT( map() ) );
- mMoveMapper->setMapping( moveButton, i );
+ mMoveMapper->setMapping( TQT_TQOBJECT(moveButton), i );
// remove button
TQToolButton *removeButton = new TQToolButton( this );
@@ -322,7 +322,7 @@ void AddresseeSelector::initGUI()
connect( removeButton, TQT_SIGNAL( clicked() ),
mRemoveMapper, TQT_SLOT( map() ) );
- mRemoveMapper->setMapping( removeButton, i );
+ mRemoveMapper->setMapping( TQT_TQOBJECT(removeButton), i );
buttonLayout->addWidget( moveButton );
buttonLayout->addWidget( removeButton );