summaryrefslogtreecommitdiffstats
path: root/krename/tabs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krename/tabs.cpp')
-rw-r--r--krename/tabs.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/krename/tabs.cpp b/krename/tabs.cpp
index d10ee26..92700c1 100644
--- a/krename/tabs.cpp
+++ b/krename/tabs.cpp
@@ -38,7 +38,7 @@ tabs::tabs(KRenameImpl* impl, TQRect r, TQWidget *parent, const char *name )
{
setIcon( BarIcon( "krename" ) );
- TQVBoxLayout* tqlayout = new TQVBoxLayout( this, 6, 6 );
+ TQVBoxLayout* layout = new TQVBoxLayout( this, 6, 6 );
TQHBoxLayout* buttons = new TQHBoxLayout( 0, 6, 6 );
TQSpacerItem* spacer = new TQSpacerItem( 20, 20, TQSizePolicy::Expanding, TQSizePolicy::Expanding );
@@ -53,12 +53,12 @@ tabs::tabs(KRenameImpl* impl, TQRect r, TQWidget *parent, const char *name )
buttons->addWidget( finishButton );
buttons->addWidget( cancelButton );
- tqlayout->addWidget( tab );
- tqlayout->addLayout( buttons );
- tqlayout->setStretchFactor( tab, 2 );
+ layout->addWidget( tab );
+ layout->addLayout( buttons );
+ layout->setStretchFactor( tab, 2 );
menuBar = new KMenuBar( this );
- tqlayout->setMenuBar( menuBar );
+ layout->setMenuBar( menuBar );
connect( cancelButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT( close() ) );