summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmlightgroupedit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpovmodeler/pmlightgroupedit.cpp')
-rw-r--r--kpovmodeler/pmlightgroupedit.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kpovmodeler/pmlightgroupedit.cpp b/kpovmodeler/pmlightgroupedit.cpp
index 18feffbe..c1e21024 100644
--- a/kpovmodeler/pmlightgroupedit.cpp
+++ b/kpovmodeler/pmlightgroupedit.cpp
@@ -19,12 +19,12 @@
#include "pmlightgroupedit.h"
#include "pmlightgroup.h"
-#include <qlayout.h>
-#include <qlabel.h>
-#include <qcheckbox.h>
+#include <tqlayout.h>
+#include <tqlabel.h>
+#include <tqcheckbox.h>
#include <klocale.h>
-PMLightGroupEdit::PMLightGroupEdit( QWidget* parent, const char* name )
+PMLightGroupEdit::PMLightGroupEdit( TQWidget* parent, const char* name )
: Base( parent, name )
{
m_pDisplayedObject = 0;
@@ -34,14 +34,14 @@ void PMLightGroupEdit::createTopWidgets( )
{
Base::createTopWidgets( );
- QHBoxLayout* layout;
- m_pGlobalLights = new QCheckBox( i18n( "Global lights" ), this );
+ TQHBoxLayout* layout;
+ m_pGlobalLights = new TQCheckBox( i18n( "Global lights" ), this );
- layout = new QHBoxLayout( topLayout( ) );
+ layout = new TQHBoxLayout( topLayout( ) );
layout->addWidget( m_pGlobalLights );
layout->addStretch( 1 );
- connect( m_pGlobalLights, SIGNAL( clicked( ) ), SIGNAL( dataChanged( ) ) );
+ connect( m_pGlobalLights, TQT_SIGNAL( clicked( ) ), TQT_SIGNAL( dataChanged( ) ) );
}
void PMLightGroupEdit::displayObject( PMObject* o )