summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmbicubicpatchedit.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:59:00 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:59:00 -0600
commitec1fddcd0d6663ad273af85357f04abbc5689468 (patch)
tree6cb946ab8b4771868c6eee8d1aa5213d6ec246e2 /kpovmodeler/pmbicubicpatchedit.cpp
parentc2637a0da6d9a1c8626ca39f8451ab3b7cda487a (diff)
downloadtdegraphics-ec1fddcd0d6663ad273af85357f04abbc5689468.tar.gz
tdegraphics-ec1fddcd0d6663ad273af85357f04abbc5689468.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit c2637a0da6d9a1c8626ca39f8451ab3b7cda487a.
Diffstat (limited to 'kpovmodeler/pmbicubicpatchedit.cpp')
-rw-r--r--kpovmodeler/pmbicubicpatchedit.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/kpovmodeler/pmbicubicpatchedit.cpp b/kpovmodeler/pmbicubicpatchedit.cpp
index b31bbf44..fe91f1e0 100644
--- a/kpovmodeler/pmbicubicpatchedit.cpp
+++ b/kpovmodeler/pmbicubicpatchedit.cpp
@@ -23,7 +23,7 @@
#include "pmvectorlistedit.h"
#include "pmpart.h"
-#include <layout.h>
+#include <tqlayout.h>
#include <tqlabel.h>
#include <tqcombobox.h>
#include <tqcheckbox.h>
@@ -39,32 +39,32 @@ void PMBicubicPatchEdit::createTopWidgets( )
{
Base::createTopWidgets( );
- TQHBoxLayout* layout;
+ TQHBoxLayout* tqlayout;
m_pType = new TQComboBox( false, this );
m_pType->insertItem( i18n( "Normal (type 0)" ) );
m_pType->insertItem( i18n( "Preprocessed (type 1)" ) );
- layout = new TQHBoxLayout( topLayout( ) );
- layout->addWidget( new TQLabel( i18n( "Type:" ), this ) );
- layout->addWidget( m_pType );
- layout->addStretch( 1 );
+ tqlayout = new TQHBoxLayout( topLayout( ) );
+ tqlayout->addWidget( new TQLabel( i18n( "Type:" ), this ) );
+ tqlayout->addWidget( m_pType );
+ tqlayout->addStretch( 1 );
m_pUSteps = new PMIntEdit( this );
m_pUSteps->setValidation( true, 0, false, 0 );
- layout = new TQHBoxLayout( topLayout( ) );
- layout->addWidget( new TQLabel( i18n( "Steps:" ) + " u", this ) );
- layout->addWidget( m_pUSteps );
+ tqlayout = new TQHBoxLayout( topLayout( ) );
+ tqlayout->addWidget( new TQLabel( i18n( "Steps:" ) + " u", this ) );
+ tqlayout->addWidget( m_pUSteps );
m_pVSteps = new PMIntEdit( this );
m_pVSteps->setValidation( true, 0, false, 0 );
- layout->addWidget( new TQLabel( "v", this ) );
- layout->addWidget( m_pVSteps );
+ tqlayout->addWidget( new TQLabel( "v", this ) );
+ tqlayout->addWidget( m_pVSteps );
m_pFlatness = new PMFloatEdit( this );
m_pFlatness->setValidation( true, 0.0, false, 0.0 );
- layout = new TQHBoxLayout( topLayout( ) );
- layout->addWidget( new TQLabel( i18n( "Flatness:" ), this ) );
- layout->addWidget( m_pFlatness );
- layout->addStretch( 1 );
+ tqlayout = new TQHBoxLayout( topLayout( ) );
+ tqlayout->addWidget( new TQLabel( i18n( "Flatness:" ), this ) );
+ tqlayout->addWidget( m_pFlatness );
+ tqlayout->addStretch( 1 );
topLayout( )->addWidget( new TQLabel( i18n( "Points:" ), this ) );