From eba47f8f0637f451e21348187591e1f1fd58ac74 Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 2 Aug 2010 19:23:46 +0000 Subject: TQt conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kpovmodeler/pmmeshedit.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'kpovmodeler/pmmeshedit.cpp') diff --git a/kpovmodeler/pmmeshedit.cpp b/kpovmodeler/pmmeshedit.cpp index 0b0e2269..6ddf9679 100644 --- a/kpovmodeler/pmmeshedit.cpp +++ b/kpovmodeler/pmmeshedit.cpp @@ -20,12 +20,12 @@ #include "pmmesh.h" #include "pmvectoredit.h" -#include -#include +#include +#include #include -PMMeshEdit::PMMeshEdit( QWidget* parent, const char* name ) +PMMeshEdit::PMMeshEdit( TQWidget* parent, const char* name ) : Base( parent, name ) { m_pDisplayedObject = 0; @@ -35,21 +35,21 @@ void PMMeshEdit::createTopWidgets( ) { Base::createTopWidgets( ); - QHBoxLayout* layout; - m_pHierarchy = new QCheckBox( i18n( "Hierarchy" ), this ); - m_pEnableInsideVector = new QCheckBox( i18n( "Inside vector:" ), this ); + TQHBoxLayout* layout; + m_pHierarchy = new TQCheckBox( i18n( "Hierarchy" ), this ); + m_pEnableInsideVector = new TQCheckBox( i18n( "Inside vector:" ), this ); m_pInsideVector = new PMVectorEdit( "x", "y", "z", this ); - layout = new QHBoxLayout( topLayout( ) ); + layout = new TQHBoxLayout( topLayout( ) ); layout->addWidget( m_pHierarchy ); layout->addStretch( 1 ); - layout = new QHBoxLayout( topLayout( ) ); + layout = new TQHBoxLayout( topLayout( ) ); layout->addWidget( m_pEnableInsideVector ); layout->addWidget( m_pInsideVector ); layout->addStretch( 1 ); - connect( m_pHierarchy, SIGNAL( clicked( ) ), SIGNAL( dataChanged( ) ) ); - connect( m_pEnableInsideVector, SIGNAL( clicked( ) ), SLOT( slotInsideVectorClicked( ) ) ); - connect( m_pInsideVector, SIGNAL( dataChanged( ) ), SIGNAL( dataChanged( ) ) ); + connect( m_pHierarchy, TQT_SIGNAL( clicked( ) ), TQT_SIGNAL( dataChanged( ) ) ); + connect( m_pEnableInsideVector, TQT_SIGNAL( clicked( ) ), TQT_SLOT( slotInsideVectorClicked( ) ) ); + connect( m_pInsideVector, TQT_SIGNAL( dataChanged( ) ), TQT_SIGNAL( dataChanged( ) ) ); } void PMMeshEdit::displayObject( PMObject* o ) -- cgit v1.2.1