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/pmslopeedit.cpp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'kpovmodeler/pmslopeedit.cpp') diff --git a/kpovmodeler/pmslopeedit.cpp b/kpovmodeler/pmslopeedit.cpp index 5bfcb88b..63b0ee44 100644 --- a/kpovmodeler/pmslopeedit.cpp +++ b/kpovmodeler/pmslopeedit.cpp @@ -21,15 +21,15 @@ #include "pmvectoredit.h" #include "pmlineedits.h" -#include -#include -#include -#include +#include +#include +#include +#include #include #include -PMSlopeEdit::PMSlopeEdit( QWidget* parent, const char* name ) +PMSlopeEdit::PMSlopeEdit( TQWidget* parent, const char* name ) : Base( parent, name ) { m_pDisplayedObject = 0; @@ -37,25 +37,25 @@ PMSlopeEdit::PMSlopeEdit( QWidget* parent, const char* name ) void PMSlopeEdit::createTopWidgets( ) { - QHBoxLayout* hl; - QGridLayout* gl; + TQHBoxLayout* hl; + TQGridLayout* gl; Base::createTopWidgets( ); - QLabel* label = new QLabel( i18n( "Height:" ), this ); + TQLabel* label = new TQLabel( i18n( "Height:" ), this ); m_pHeightEdit = new PMFloatEdit( this ); - hl = new QHBoxLayout( topLayout( ) ); - gl = new QGridLayout( hl, 2, 2 ); + hl = new TQHBoxLayout( topLayout( ) ); + gl = new TQGridLayout( hl, 2, 2 ); gl->addWidget( label, 0, 0 ); gl->addWidget( m_pHeightEdit, 0, 1 ); - label = new QLabel( i18n( "Slope:" ), this ); + label = new TQLabel( i18n( "Slope:" ), this ); m_pSlopeEdit = new PMFloatEdit( this ); gl->addWidget( label, 1, 0 ); gl->addWidget( m_pSlopeEdit, 1, 1 ); hl->addStretch( 1 ); - connect( m_pHeightEdit, SIGNAL( dataChanged( ) ), SIGNAL( dataChanged( ) ) ); - connect( m_pSlopeEdit, SIGNAL( dataChanged( ) ), SIGNAL( dataChanged( ) ) ); + connect( m_pHeightEdit, TQT_SIGNAL( dataChanged( ) ), TQT_SIGNAL( dataChanged( ) ) ); + connect( m_pSlopeEdit, TQT_SIGNAL( dataChanged( ) ), TQT_SIGNAL( dataChanged( ) ) ); } void PMSlopeEdit::displayObject( PMObject* o ) -- cgit v1.2.1