summaryrefslogtreecommitdiffstats
path: root/libtdepim/addresseeselector.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libtdepim/addresseeselector.cpp')
-rw-r--r--libtdepim/addresseeselector.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/libtdepim/addresseeselector.cpp b/libtdepim/addresseeselector.cpp
index e9a95be6..b89184e6 100644
--- a/libtdepim/addresseeselector.cpp
+++ b/libtdepim/addresseeselector.cpp
@@ -250,17 +250,17 @@ AddresseeSelector::~AddresseeSelector()
void AddresseeSelector::init()
{
- connect( TDEABC::StdAddressBook::self( true ), TQT_SIGNAL( addressBookChanged( AddressBook* ) ),
- this, TQT_SLOT( reloadAddressBook() ) );
- connect( mAddresseeFilter, TQT_SIGNAL( textChanged( const TQString& ) ),
- this, TQT_SLOT( updateAddresseeView() ) );
- connect( mAddressBookCombo, TQT_SIGNAL( activated( int ) ),
- this, TQT_SLOT( updateAddresseeView() ) );
-
- connect( mMoveMapper, TQT_SIGNAL( mapped( int ) ),
- this, TQT_SLOT( move( int ) ) );
- connect( mRemoveMapper, TQT_SIGNAL( mapped( int ) ),
- this, TQT_SLOT( remove( int ) ) );
+ connect( TDEABC::StdAddressBook::self( true ), TQ_SIGNAL( addressBookChanged( AddressBook* ) ),
+ this, TQ_SLOT( reloadAddressBook() ) );
+ connect( mAddresseeFilter, TQ_SIGNAL( textChanged( const TQString& ) ),
+ this, TQ_SLOT( updateAddresseeView() ) );
+ connect( mAddressBookCombo, TQ_SIGNAL( activated( int ) ),
+ this, TQ_SLOT( updateAddresseeView() ) );
+
+ connect( mMoveMapper, TQ_SIGNAL( mapped( int ) ),
+ this, TQ_SLOT( move( int ) ) );
+ connect( mRemoveMapper, TQ_SIGNAL( mapped( int ) ),
+ this, TQ_SLOT( remove( int ) ) );
reloadAddressBook();
}
@@ -298,8 +298,8 @@ void AddresseeSelector::initGUI()
listView->setFullWidth( true );
mSelectionViews.append( listView );
- connect( listView, TQT_SIGNAL( doubleClicked( TQListViewItem*, const TQPoint&, int ) ),
- mRemoveMapper, TQT_SLOT( map() ) );
+ connect( listView, TQ_SIGNAL( doubleClicked( TQListViewItem*, const TQPoint&, int ) ),
+ mRemoveMapper, TQ_SLOT( map() ) );
mRemoveMapper->setMapping( listView, i );
TQVBoxLayout *buttonLayout = new TQVBoxLayout( this );
@@ -311,8 +311,8 @@ void AddresseeSelector::initGUI()
moveButton->setIconSet( moveSet );
moveButton->setFixedSize( 30, 30 );
- connect( moveButton, TQT_SIGNAL( clicked() ),
- mMoveMapper, TQT_SLOT( map() ) );
+ connect( moveButton, TQ_SIGNAL( clicked() ),
+ mMoveMapper, TQ_SLOT( map() ) );
mMoveMapper->setMapping( moveButton, i );
// remove button
@@ -320,8 +320,8 @@ void AddresseeSelector::initGUI()
removeButton->setIconSet( removeSet );
removeButton->setFixedSize( 30, 30 );
- connect( removeButton, TQT_SIGNAL( clicked() ),
- mRemoveMapper, TQT_SLOT( map() ) );
+ connect( removeButton, TQ_SIGNAL( clicked() ),
+ mRemoveMapper, TQ_SLOT( map() ) );
mRemoveMapper->setMapping( removeButton, i );
buttonLayout->addWidget( moveButton );