summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmopenglsettings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpovmodeler/pmopenglsettings.cpp')
-rw-r--r--kpovmodeler/pmopenglsettings.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kpovmodeler/pmopenglsettings.cpp b/kpovmodeler/pmopenglsettings.cpp
index 07376933..d3bf5098 100644
--- a/kpovmodeler/pmopenglsettings.cpp
+++ b/kpovmodeler/pmopenglsettings.cpp
@@ -20,7 +20,7 @@
#include "pmglview.h"
#include "pmdefaults.h"
-#include <tqlayout.h>
+#include <layout.h>
#include <tqcheckbox.h>
#include <tqlabel.h>
#include <klocale.h>
@@ -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( )