diff options
Diffstat (limited to 'kaddressbook/filtereditdialog.cpp')
-rw-r--r-- | kaddressbook/filtereditdialog.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kaddressbook/filtereditdialog.cpp b/kaddressbook/filtereditdialog.cpp index 2fc87246b..684fe1e69 100644 --- a/kaddressbook/filtereditdialog.cpp +++ b/kaddressbook/filtereditdialog.cpp @@ -124,8 +124,8 @@ void FilterEditDialog::initGUI() mNameEdit->setFocus(); topLayout->addWidget( label, 0, 0 ); topLayout->addWidget( mNameEdit, 0, 1 ); - connect( mNameEdit, TQT_SIGNAL( textChanged( const TQString& ) ), - TQT_SLOT( filterNameTextChanged( const TQString&) ) ); + connect( mNameEdit, TQ_SIGNAL( textChanged( const TQString& ) ), + TQ_SLOT( filterNameTextChanged( const TQString&) ) ); mCategoriesView = new TDEListView( page ); mCategoriesView->addColumn( i18n( "Category" ) ); @@ -260,16 +260,16 @@ void FilterDialog::initGUI() mFilterListBox = new TDEListBox( page ); topLayout->addWidget( mFilterListBox, 0, 0 ); - connect( mFilterListBox, TQT_SIGNAL( selectionChanged( TQListBoxItem * ) ), - TQT_SLOT( selectionChanged( TQListBoxItem * ) ) ); - connect( mFilterListBox, TQT_SIGNAL( doubleClicked ( TQListBoxItem * ) ), - TQT_SLOT( edit() ) ); + connect( mFilterListBox, TQ_SIGNAL( selectionChanged( TQListBoxItem * ) ), + TQ_SLOT( selectionChanged( TQListBoxItem * ) ) ); + connect( mFilterListBox, TQ_SIGNAL( doubleClicked ( TQListBoxItem * ) ), + TQ_SLOT( edit() ) ); KButtonBox *buttonBox = new KButtonBox( page, TQt::Vertical ); - buttonBox->addButton( i18n( "&Add..." ), this, TQT_SLOT( add() ) ); - mEditButton = buttonBox->addButton( i18n( "&Edit..." ), this, TQT_SLOT( edit() ) ); + buttonBox->addButton( i18n( "&Add..." ), this, TQ_SLOT( add() ) ); + mEditButton = buttonBox->addButton( i18n( "&Edit..." ), this, TQ_SLOT( edit() ) ); mEditButton->setEnabled( false ); - mRemoveButton = buttonBox->addButton( i18n( "&Remove" ), this, TQT_SLOT( remove() ) ); + mRemoveButton = buttonBox->addButton( i18n( "&Remove" ), this, TQ_SLOT( remove() ) ); mRemoveButton->setEnabled( false ); buttonBox->layout(); |