summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmpalettevalueedit.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:47:59 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:47:59 -0600
commitc2637a0da6d9a1c8626ca39f8451ab3b7cda487a (patch)
treebe38034f085e8be24f14f329f87a611d319e6259 /kpovmodeler/pmpalettevalueedit.cpp
parent3fd343f2c6b0545bd750b2939c74be3834b13274 (diff)
downloadtdegraphics-c2637a0da6d9a1c8626ca39f8451ab3b7cda487a.tar.gz
tdegraphics-c2637a0da6d9a1c8626ca39f8451ab3b7cda487a.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'kpovmodeler/pmpalettevalueedit.cpp')
-rw-r--r--kpovmodeler/pmpalettevalueedit.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/kpovmodeler/pmpalettevalueedit.cpp b/kpovmodeler/pmpalettevalueedit.cpp
index 25e1ac64..6cedc617 100644
--- a/kpovmodeler/pmpalettevalueedit.cpp
+++ b/kpovmodeler/pmpalettevalueedit.cpp
@@ -22,7 +22,7 @@
#include "pmdebug.h"
#include <tqwidget.h>
-#include <tqlayout.h>
+#include <layout.h>
#include <tqcombobox.h>
#include <tqlabel.h>
#include <tqlineedit.h>
@@ -39,21 +39,21 @@ PMPaletteValueEdit::PMPaletteValueEdit( TQWidget* parent, const char* name )
: TQWidget( parent, name )
{
TQLabel* lbl;
- TQHBoxLayout* tqlayout;
+ TQHBoxLayout* layout;
m_pIndexEdit = new PMIntEdit( this );
m_pValueEdit = new PMFloatEdit( this );
- tqlayout = new TQHBoxLayout( this );
+ layout = new TQHBoxLayout( this );
lbl = new TQLabel( i18n( "Index" ), this );
- tqlayout->addWidget( lbl );
- tqlayout->addSpacing( KDialog::spacingHint( ) );
- tqlayout->addWidget( m_pIndexEdit );
- tqlayout->addSpacing( KDialog::spacingHint( ) );
+ layout->addWidget( lbl );
+ layout->addSpacing( KDialog::spacingHint( ) );
+ layout->addWidget( m_pIndexEdit );
+ layout->addSpacing( KDialog::spacingHint( ) );
lbl = new TQLabel( i18n( "Value" ), this );
- tqlayout->addWidget( lbl );
- tqlayout->addSpacing( KDialog::spacingHint( ) );
- tqlayout->addWidget( m_pValueEdit );
+ layout->addWidget( lbl );
+ layout->addSpacing( KDialog::spacingHint( ) );
+ layout->addWidget( m_pValueEdit );
connect( m_pIndexEdit, TQT_SIGNAL( dataChanged( ) ), TQT_SIGNAL( dataChanged( ) ) );
connect( m_pValueEdit, TQT_SIGNAL( dataChanged( ) ), TQT_SIGNAL( dataChanged( ) ) );