summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmcsgedit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpovmodeler/pmcsgedit.cpp')
-rw-r--r--kpovmodeler/pmcsgedit.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kpovmodeler/pmcsgedit.cpp b/kpovmodeler/pmcsgedit.cpp
index 014eb09b..114e22f6 100644
--- a/kpovmodeler/pmcsgedit.cpp
+++ b/kpovmodeler/pmcsgedit.cpp
@@ -34,17 +34,17 @@ void PMCSGEdit::createTopWidgets( )
{
Base::createTopWidgets( );
- TQHBoxLayout* tqlayout;
+ TQHBoxLayout* layout;
m_pTypeCombo = new TQComboBox( false, this );
m_pTypeCombo->insertItem( i18n( "Union" ) );
m_pTypeCombo->insertItem( i18n( "Intersection" ) );
m_pTypeCombo->insertItem( i18n( "Difference" ) );
m_pTypeCombo->insertItem( i18n( "Merge" ) );
- tqlayout = new TQHBoxLayout( topLayout( ) );
- tqlayout->addWidget( new TQLabel( i18n( "Type:" ), this ) );
- tqlayout->addWidget( m_pTypeCombo );
- tqlayout->addStretch( 1 );
+ layout = new TQHBoxLayout( topLayout( ) );
+ layout->addWidget( new TQLabel( i18n( "Type:" ), this ) );
+ layout->addWidget( m_pTypeCombo );
+ layout->addStretch( 1 );
connect( m_pTypeCombo, TQT_SIGNAL( activated( int ) ), TQT_SLOT( slotTypeSelected( int ) ) );
}