summaryrefslogtreecommitdiffstats
path: root/kitchensync/src/configguigpe.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:23:13 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-21 14:23:13 -0600
commitba2a3ce341c0c71bbbcf350fcbcd60c552220b31 (patch)
tree08ba9504290f461f1244dded6b37fc4db00847ab /kitchensync/src/configguigpe.cpp
parentd5b298be14c173d62e8fbc6a3803ba8f657f3dcb (diff)
downloadtdepim-ba2a3ce341c0c71bbbcf350fcbcd60c552220b31.tar.gz
tdepim-ba2a3ce341c0c71bbbcf350fcbcd60c552220b31.zip
Rename obsolete tq methods to standard names
Diffstat (limited to 'kitchensync/src/configguigpe.cpp')
-rw-r--r--kitchensync/src/configguigpe.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/kitchensync/src/configguigpe.cpp b/kitchensync/src/configguigpe.cpp
index c6e6627f8..1a5cdb141 100644
--- a/kitchensync/src/configguigpe.cpp
+++ b/kitchensync/src/configguigpe.cpp
@@ -81,23 +81,23 @@ TQString ConfigGuiGpe::save() const
void ConfigGuiGpe::initGUI()
{
- TQGridLayout *tqlayout = new TQGridLayout( topLayout(), 12, 4, KDialog::spacingHint() );
- tqlayout->setMargin( KDialog::marginHint() );
+ TQGridLayout *layout = new TQGridLayout( topLayout(), 12, 4, KDialog::spacingHint() );
+ layout->setMargin( KDialog::marginHint() );
- tqlayout->addWidget( new TQLabel( i18n( "Connection Mode:" ), this ), 0, 0 );
+ layout->addWidget( new TQLabel( i18n( "Connection Mode:" ), this ), 0, 0 );
mConnectionMode = new KComboBox( this );
- tqlayout->addMultiCellWidget( mConnectionMode, 0, 0, 0, 3 );
+ layout->addMultiCellWidget( mConnectionMode, 0, 0, 0, 3 );
- tqlayout->addWidget( new TQLabel( i18n( "IP Address:" ), this ), 1, 0 );
+ layout->addWidget( new TQLabel( i18n( "IP Address:" ), this ), 1, 0 );
mIP = new KLineEdit( this );
mIP->setInputMask( "000.000.000.000" );
- tqlayout->addWidget( mIP, 1, 1 );
+ layout->addWidget( mIP, 1, 1 );
- tqlayout->addWidget( new TQLabel( i18n( "Port:" ), this ), 1, 2, TQt::AlignRight );
+ layout->addWidget( new TQLabel( i18n( "Port:" ), this ), 1, 2, TQt::AlignRight );
mPort = new TQSpinBox( 1, 65536, 1, this );
- tqlayout->addWidget( mPort, 1, 3 );
+ layout->addWidget( mPort, 1, 3 );
- tqlayout->addWidget( new TQLabel( i18n( "User:" ), this ), 2, 0 );
+ layout->addWidget( new TQLabel( i18n( "User:" ), this ), 2, 0 );
mUser = new KLineEdit( this );
- tqlayout->addMultiCellWidget( mUser, 2, 2, 1, 3 );
+ layout->addMultiCellWidget( mUser, 2, 2, 1, 3 );
}