summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmopenglsettings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpovmodeler/pmopenglsettings.cpp')
-rw-r--r--kpovmodeler/pmopenglsettings.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kpovmodeler/pmopenglsettings.cpp b/kpovmodeler/pmopenglsettings.cpp
index 07376933..9c125c32 100644
--- a/kpovmodeler/pmopenglsettings.cpp
+++ b/kpovmodeler/pmopenglsettings.cpp
@@ -28,12 +28,12 @@
PMOpenGLSettings::PMOpenGLSettings( TQWidget* parent, const char* name )
: PMSettingsDialogPage( parent, name )
{
- TQVBoxLayout* vtqlayout = new TQVBoxLayout( this, 0, KDialog::spacingHint( ) );
+ TQVBoxLayout* vlayout = new TQVBoxLayout( this, 0, KDialog::spacingHint( ) );
m_pDirect = new TQCheckBox( i18n( "Direct rendering" ), this );
- vtqlayout->addWidget( new TQLabel( i18n( "Changes take only effect after a restart!" ), this ) );
- vtqlayout->addWidget( m_pDirect );
- vtqlayout->addStretch( 1 );
+ vlayout->addWidget( new TQLabel( i18n( "Changes take only effect after a restart!" ), this ) );
+ vlayout->addWidget( m_pDirect );
+ vlayout->addStretch( 1 );
}
void PMOpenGLSettings::displaySettings( )