summaryrefslogtreecommitdiffstats
path: root/kaddressbook/simpleaddresseeeditor.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /kaddressbook/simpleaddresseeeditor.cpp
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kaddressbook/simpleaddresseeeditor.cpp')
-rw-r--r--kaddressbook/simpleaddresseeeditor.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/kaddressbook/simpleaddresseeeditor.cpp b/kaddressbook/simpleaddresseeeditor.cpp
index e377feee..f55ab303 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()