summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmlightgroupedit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpovmodeler/pmlightgroupedit.cpp')
-rw-r--r--kpovmodeler/pmlightgroupedit.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kpovmodeler/pmlightgroupedit.cpp b/kpovmodeler/pmlightgroupedit.cpp
index a0974c2c..73a75c6d 100644
--- a/kpovmodeler/pmlightgroupedit.cpp
+++ b/kpovmodeler/pmlightgroupedit.cpp
@@ -19,7 +19,7 @@
#include "pmlightgroupedit.h"
#include "pmlightgroup.h"
-#include <layout.h>
+#include <tqlayout.h>
#include <tqlabel.h>
#include <tqcheckbox.h>
#include <klocale.h>
@@ -34,12 +34,12 @@ void PMLightGroupEdit::createTopWidgets( )
{
Base::createTopWidgets( );
- TQHBoxLayout* layout;
+ TQHBoxLayout* tqlayout;
m_pGlobalLights = new TQCheckBox( i18n( "Global lights" ), this );
- layout = new TQHBoxLayout( topLayout( ) );
- layout->addWidget( m_pGlobalLights );
- layout->addStretch( 1 );
+ tqlayout = new TQHBoxLayout( topLayout( ) );
+ tqlayout->addWidget( m_pGlobalLights );
+ tqlayout->addStretch( 1 );
connect( m_pGlobalLights, TQT_SIGNAL( clicked( ) ), TQT_SIGNAL( dataChanged( ) ) );
}