diff options
Diffstat (limited to 'kaddressbook/simpleaddresseeeditor.cpp')
-rw-r--r-- | kaddressbook/simpleaddresseeeditor.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kaddressbook/simpleaddresseeeditor.cpp b/kaddressbook/simpleaddresseeeditor.cpp index e377feeed..f55ab303b 100644 --- a/kaddressbook/simpleaddresseeeditor.cpp +++ b/kaddressbook/simpleaddresseeeditor.cpp @@ -21,8 +21,8 @@ without including the source code for Qt in the source distribution. */ -#include <qlayout.h> -#include <qlabel.h> +#include <tqlayout.h> +#include <tqlabel.h> #include <klineedit.h> #include <klocale.h> @@ -30,7 +30,7 @@ #include "simpleaddresseeeditor.h" -SimpleAddresseeEditor::SimpleAddresseeEditor( QWidget *parent, const char *name ) +SimpleAddresseeEditor::SimpleAddresseeEditor( TQWidget *parent, const char *name ) : AddresseeEditorBase( parent, name ), mDirty( false ), mBlockModified( false ) @@ -64,24 +64,24 @@ void SimpleAddresseeEditor::setInitialFocus() void SimpleAddresseeEditor::initGui() { - QGridLayout *topLayout = new QGridLayout( this, 2, 2, KDialog::marginHint(), + TQGridLayout *topLayout = new TQGridLayout( this, 2, 2, KDialog::marginHint(), KDialog::spacingHint() ); - QLabel *label = new QLabel( i18n( "Name:" ), this ); + TQLabel *label = new TQLabel( i18n( "Name:" ), this ); topLayout->addWidget( label, 0, 0 ); mNameEdit = new KLineEdit( this ); topLayout->addWidget( mNameEdit, 0, 1 ); - connect( mNameEdit, SIGNAL( textChanged( const QString & ) ), - SLOT( emitModified() ) ); + connect( mNameEdit, TQT_SIGNAL( textChanged( const TQString & ) ), + TQT_SLOT( emitModified() ) ); - label = new QLabel( i18n( "Email:" ), this ); + label = new TQLabel( i18n( "Email:" ), this ); topLayout->addWidget( label, 1, 0 ); mEmailEdit = new KLineEdit( this ); topLayout->addWidget( mEmailEdit, 1, 1 ); - connect( mEmailEdit, SIGNAL( textChanged( const QString & ) ), - SLOT( emitModified() ) ); + connect( mEmailEdit, TQT_SIGNAL( textChanged( const TQString & ) ), + TQT_SLOT( emitModified() ) ); } void SimpleAddresseeEditor::load() |