diff options
Diffstat (limited to 'karbon/widgets/vreference.cc')
| -rw-r--r-- | karbon/widgets/vreference.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/karbon/widgets/vreference.cc b/karbon/widgets/vreference.cc index f400fc139..c85800002 100644 --- a/karbon/widgets/vreference.cc +++ b/karbon/widgets/vreference.cc @@ -28,7 +28,7 @@ VReference::VReference( TQWidget *parent, const char *name ) : TQFrame ( parent, name ) { - TQVBoxLayout* tqlayout = new TQVBoxLayout( this ); + TQVBoxLayout* layout = new TQVBoxLayout( this ); mButtonGroup = new TQButtonGroup (3,Qt::Vertical, this ); TQRadioButton* radio = new TQRadioButton ( mButtonGroup ); mButtonGroup->insert( radio, TopLeft ); @@ -54,8 +54,8 @@ VReference::VReference( TQWidget *parent, const char *name ) : TQFrame ( parent, this, TQT_SLOT( setReferencePoint( int ) ) ); mButtonGroup->setButton( Center ); - tqlayout->addWidget( mButtonGroup ); - tqlayout->activate(); + layout->addWidget( mButtonGroup ); + layout->activate(); setReferencePoint( Center ); } |
