From e69e8b1d09fb579316595b4e6a850e717358a8b1 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sun, 19 Jun 2011 19:03:33 +0000 Subject: TQt4 port kdegraphics This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1237557 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kpovmodeler/pmopenglsettings.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'kpovmodeler/pmopenglsettings.cpp') diff --git a/kpovmodeler/pmopenglsettings.cpp b/kpovmodeler/pmopenglsettings.cpp index 9c125c32..0b76abdc 100644 --- a/kpovmodeler/pmopenglsettings.cpp +++ b/kpovmodeler/pmopenglsettings.cpp @@ -25,15 +25,15 @@ #include #include -PMOpenGLSettings::PMOpenGLSettings( TQWidget* parent, const char* name ) - : PMSettingsDialogPage( parent, name ) +PMOpenGLSettings::PMOpenGLSettings( TQWidget* tqparent, const char* name ) + : PMSettingsDialogPage( tqparent, name ) { - TQVBoxLayout* vlayout = new TQVBoxLayout( this, 0, KDialog::spacingHint( ) ); + TQVBoxLayout* vtqlayout = new TQVBoxLayout( this, 0, KDialog::spacingHint( ) ); m_pDirect = new TQCheckBox( i18n( "Direct rendering" ), this ); - vlayout->addWidget( new TQLabel( i18n( "Changes take only effect after a restart!" ), this ) ); - vlayout->addWidget( m_pDirect ); - vlayout->addStretch( 1 ); + vtqlayout->addWidget( new TQLabel( i18n( "Changes take only effect after a restart!" ), this ) ); + vtqlayout->addWidget( m_pDirect ); + vtqlayout->addStretch( 1 ); } void PMOpenGLSettings::displaySettings( ) -- cgit v1.2.3