summaryrefslogtreecommitdiffstats
path: root/kio/kio/pastedialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kio/kio/pastedialog.cpp')
-rw-r--r--kio/kio/pastedialog.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kio/kio/pastedialog.cpp b/kio/kio/pastedialog.cpp
index dd9d947e8..480eaaba8 100644
--- a/kio/kio/pastedialog.cpp
+++ b/kio/kio/pastedialog.cpp
@@ -35,23 +35,23 @@ KIO::PasteDialog::PasteDialog( const TQString &caption, const TQString &label,
: KDialogBase( parent, 0 /*name*/, true, caption, Ok|Cancel, Ok, true )
{
TQFrame *frame = makeMainWidget();
- TQVBoxLayout *tqlayout = new TQVBoxLayout( frame, 0, spacingHint() );
+ TQVBoxLayout *layout = new TQVBoxLayout( frame, 0, spacingHint() );
m_label = new TQLabel( label, frame );
- tqlayout->addWidget( m_label );
+ layout->addWidget( m_label );
m_lineEdit = new KLineEdit( value, frame );
- tqlayout->addWidget( m_lineEdit );
+ layout->addWidget( m_lineEdit );
m_lineEdit->setFocus();
m_label->setBuddy( m_lineEdit );
- tqlayout->addWidget( new TQLabel( i18n( "Data format:" ), frame ) );
+ layout->addWidget( new TQLabel( i18n( "Data format:" ), frame ) );
m_comboBox = new TQComboBox( frame );
m_comboBox->insertStringList( items );
- tqlayout->addWidget( m_comboBox );
+ layout->addWidget( m_comboBox );
- tqlayout->addStretch();
+ layout->addStretch();
//connect( m_lineEdit, TQT_SIGNAL( textChanged( const TQString & ) ),
// TQT_SLOT( slotEditTextChanged( const TQString & ) ) );