summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmsqeedit.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
commiteba47f8f0637f451e21348187591e1f1fd58ac74 (patch)
tree448f10b95c656604acc331a3236c1e59bde5c1ad /kpovmodeler/pmsqeedit.cpp
parentc7e8736c69373f48b0401319757c742e8607431a (diff)
downloadtdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz
tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pmsqeedit.cpp')
-rw-r--r--kpovmodeler/pmsqeedit.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/kpovmodeler/pmsqeedit.cpp b/kpovmodeler/pmsqeedit.cpp
index 488ce2f2..377b552b 100644
--- a/kpovmodeler/pmsqeedit.cpp
+++ b/kpovmodeler/pmsqeedit.cpp
@@ -20,11 +20,11 @@
#include "pmsqe.h"
#include "pmlineedits.h"
-#include <qlayout.h>
-#include <qlabel.h>
+#include <tqlayout.h>
+#include <tqlabel.h>
#include <klocale.h>
-PMSuperquadricEllipsoidEdit::PMSuperquadricEllipsoidEdit( QWidget* parent, const char* name )
+PMSuperquadricEllipsoidEdit::PMSuperquadricEllipsoidEdit( TQWidget* parent, const char* name )
: Base( parent, name )
{
m_pDisplayedObject = 0;
@@ -39,18 +39,18 @@ void PMSuperquadricEllipsoidEdit::createTopWidgets( )
m_pValueN = new PMFloatEdit( this );
m_pValueN->setValidation( true, 0.01, false, 1.0 );
- topLayout( )->addWidget( new QLabel( i18n( "Exponents:" ), this ) );
+ topLayout( )->addWidget( new TQLabel( i18n( "Exponents:" ), this ) );
- QHBoxLayout* hl = new QHBoxLayout( topLayout( ) );
- QGridLayout* gl = new QGridLayout( hl, 2, 2 );
- gl->addWidget( new QLabel( i18n( "East-west:" ), this ), 0, 0 );
+ TQHBoxLayout* hl = new TQHBoxLayout( topLayout( ) );
+ TQGridLayout* gl = new TQGridLayout( hl, 2, 2 );
+ gl->addWidget( new TQLabel( i18n( "East-west:" ), this ), 0, 0 );
gl->addWidget( m_pValueE, 0, 1 );
- gl->addWidget( new QLabel( i18n( "North-south:" ), this ), 1, 0 );
+ gl->addWidget( new TQLabel( i18n( "North-south:" ), this ), 1, 0 );
gl->addWidget( m_pValueN, 1, 1 );
hl->addStretch( 1 );
- connect( m_pValueE, SIGNAL( dataChanged( ) ), SIGNAL( dataChanged( ) ) );
- connect( m_pValueN, SIGNAL( dataChanged( ) ), SIGNAL( dataChanged( ) ) );
+ connect( m_pValueE, TQT_SIGNAL( dataChanged( ) ), TQT_SIGNAL( dataChanged( ) ) );
+ connect( m_pValueN, TQT_SIGNAL( dataChanged( ) ), TQT_SIGNAL( dataChanged( ) ) );
}
void PMSuperquadricEllipsoidEdit::displayObject( PMObject* o )