diff options
Diffstat (limited to 'kaddressbook/nameeditdialog.cpp')
-rw-r--r-- | kaddressbook/nameeditdialog.cpp | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/kaddressbook/nameeditdialog.cpp b/kaddressbook/nameeditdialog.cpp index 0d350ae70..6d90324ac 100644 --- a/kaddressbook/nameeditdialog.cpp +++ b/kaddressbook/nameeditdialog.cpp @@ -105,7 +105,7 @@ NameEditDialog::NameEditDialog( const TDEABC::Addressee &addr, int type, mFormattedNameCombo = new KComboBox( page ); mFormattedNameCombo->setEnabled( !readOnly ); layout->addWidget( mFormattedNameCombo, 5, 1 ); - connect( mFormattedNameCombo, TQT_SIGNAL( activated( int ) ), TQT_SLOT( typeChanged( int ) ) ); + connect( mFormattedNameCombo, TQ_SIGNAL( activated( int ) ), TQ_SLOT( typeChanged( int ) ) ); mFormattedNameEdit = new KLineEdit( page ); mFormattedNameEdit->setEnabled( type == CustomName && !readOnly ); @@ -113,8 +113,8 @@ NameEditDialog::NameEditDialog( const TDEABC::Addressee &addr, int type, mParseBox = new TQCheckBox( i18n( "Parse name automatically" ), page ); mParseBox->setEnabled( !readOnly ); - connect( mParseBox, TQT_SIGNAL( toggled(bool) ), TQT_SLOT( parseBoxChanged(bool) ) ); - connect( mParseBox, TQT_SIGNAL( toggled(bool) ), TQT_SLOT( modified() ) ); + connect( mParseBox, TQ_SIGNAL( toggled(bool) ), TQ_SLOT( parseBoxChanged(bool) ) ); + connect( mParseBox, TQ_SIGNAL( toggled(bool) ), TQ_SLOT( modified() ) ); layout->addMultiCellWidget( mParseBox, 6, 6, 0, 1 ); // Fill in the values @@ -159,24 +159,24 @@ NameEditDialog::NameEditDialog( const TDEABC::Addressee &addr, int type, TDEAcceleratorManager::manage( this ); - connect( mPrefixCombo, TQT_SIGNAL( textChanged( const TQString& ) ), - this, TQT_SLOT( modified() ) ); - connect( mGivenNameEdit, TQT_SIGNAL( textChanged( const TQString& ) ), - this, TQT_SLOT( modified() ) ); - connect( mAdditionalNameEdit, TQT_SIGNAL( textChanged( const TQString& ) ), - this, TQT_SLOT( modified() ) ); - connect( mFamilyNameEdit, TQT_SIGNAL( textChanged( const TQString& ) ), - this, TQT_SLOT( modified() ) ); - connect( mSuffixCombo, TQT_SIGNAL( textChanged( const TQString& ) ), - this, TQT_SLOT( modified() ) ); - connect( mFormattedNameCombo, TQT_SIGNAL( activated( int ) ), - this, TQT_SLOT( modified() ) ); - connect( mFormattedNameCombo, TQT_SIGNAL( activated( int ) ), - this, TQT_SLOT( formattedNameTypeChanged() ) ); - connect( mFormattedNameEdit, TQT_SIGNAL( textChanged( const TQString& ) ), - this, TQT_SLOT( modified() ) ); - connect( mFormattedNameEdit, TQT_SIGNAL( textChanged( const TQString& ) ), - this, TQT_SLOT( formattedNameChanged( const TQString& ) ) ); + connect( mPrefixCombo, TQ_SIGNAL( textChanged( const TQString& ) ), + this, TQ_SLOT( modified() ) ); + connect( mGivenNameEdit, TQ_SIGNAL( textChanged( const TQString& ) ), + this, TQ_SLOT( modified() ) ); + connect( mAdditionalNameEdit, TQ_SIGNAL( textChanged( const TQString& ) ), + this, TQ_SLOT( modified() ) ); + connect( mFamilyNameEdit, TQ_SIGNAL( textChanged( const TQString& ) ), + this, TQ_SLOT( modified() ) ); + connect( mSuffixCombo, TQ_SIGNAL( textChanged( const TQString& ) ), + this, TQ_SLOT( modified() ) ); + connect( mFormattedNameCombo, TQ_SIGNAL( activated( int ) ), + this, TQ_SLOT( modified() ) ); + connect( mFormattedNameCombo, TQ_SIGNAL( activated( int ) ), + this, TQ_SLOT( formattedNameTypeChanged() ) ); + connect( mFormattedNameEdit, TQ_SIGNAL( textChanged( const TQString& ) ), + this, TQ_SLOT( modified() ) ); + connect( mFormattedNameEdit, TQ_SIGNAL( textChanged( const TQString& ) ), + this, TQ_SLOT( formattedNameChanged( const TQString& ) ) ); initTypeCombo(); mFormattedNameCombo->setCurrentItem( type ); |