summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmpigmentedit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpovmodeler/pmpigmentedit.cpp')
-rw-r--r--kpovmodeler/pmpigmentedit.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kpovmodeler/pmpigmentedit.cpp b/kpovmodeler/pmpigmentedit.cpp
index 939f18cf..16bfab2c 100644
--- a/kpovmodeler/pmpigmentedit.cpp
+++ b/kpovmodeler/pmpigmentedit.cpp
@@ -20,12 +20,12 @@
#include "pmpigment.h"
#include "pmlinkedit.h"
-#include <qlayout.h>
-#include <qcheckbox.h>
+#include <tqlayout.h>
+#include <tqcheckbox.h>
#include <klocale.h>
-PMPigmentEdit::PMPigmentEdit( QWidget* parent, const char* name )
+PMPigmentEdit::PMPigmentEdit( TQWidget* parent, const char* name )
: Base( parent, name )
{
m_pDisplayedObject = 0;
@@ -34,10 +34,10 @@ PMPigmentEdit::PMPigmentEdit( QWidget* parent, const char* name )
void PMPigmentEdit::createTopWidgets()
{
Base::createTopWidgets();
- m_pUVMapping = new QCheckBox( i18n( "UV mapping" ), this );
+ m_pUVMapping = new TQCheckBox( i18n( "UV mapping" ), this );
topLayout( )->addWidget( m_pUVMapping );
- connect( m_pUVMapping, SIGNAL( clicked() ), SIGNAL( dataChanged() ) );
+ connect( m_pUVMapping, TQT_SIGNAL( clicked() ), TQT_SIGNAL( dataChanged() ) );
}
void PMPigmentEdit::displayObject( PMObject* o )