diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kpovmodeler/pmpalettevalueedit.cpp | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-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/pmpalettevalueedit.cpp')
-rw-r--r-- | kpovmodeler/pmpalettevalueedit.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/kpovmodeler/pmpalettevalueedit.cpp b/kpovmodeler/pmpalettevalueedit.cpp index ae6ea653..ca029887 100644 --- a/kpovmodeler/pmpalettevalueedit.cpp +++ b/kpovmodeler/pmpalettevalueedit.cpp @@ -21,42 +21,42 @@ #include "pmlineedits.h" #include "pmdebug.h" -#include <qwidget.h> -#include <qlayout.h> -#include <qcombobox.h> -#include <qlabel.h> -#include <qlineedit.h> -#include <qcheckbox.h> -#include <qpushbutton.h> -#include <qtooltip.h> +#include <tqwidget.h> +#include <tqlayout.h> +#include <tqcombobox.h> +#include <tqlabel.h> +#include <tqlineedit.h> +#include <tqcheckbox.h> +#include <tqpushbutton.h> +#include <tqtooltip.h> #include <ktabctl.h> #include <klocale.h> #include <kmessagebox.h> #include <kdialog.h> #include <kfiledialog.h> -PMPaletteValueEdit::PMPaletteValueEdit( QWidget* parent, const char* name ) - : QWidget( parent, name ) +PMPaletteValueEdit::PMPaletteValueEdit( TQWidget* parent, const char* name ) + : TQWidget( parent, name ) { - QLabel* lbl; - QHBoxLayout* layout; + TQLabel* lbl; + TQHBoxLayout* layout; m_pIndexEdit = new PMIntEdit( this ); m_pValueEdit = new PMFloatEdit( this ); - layout = new QHBoxLayout( this ); - lbl = new QLabel( i18n( "Index" ), this ); + layout = new TQHBoxLayout( this ); + lbl = new TQLabel( i18n( "Index" ), this ); layout->addWidget( lbl ); layout->addSpacing( KDialog::spacingHint( ) ); layout->addWidget( m_pIndexEdit ); layout->addSpacing( KDialog::spacingHint( ) ); - lbl = new QLabel( i18n( "Value" ), this ); + lbl = new TQLabel( i18n( "Value" ), this ); layout->addWidget( lbl ); layout->addSpacing( KDialog::spacingHint( ) ); layout->addWidget( m_pValueEdit ); - connect( m_pIndexEdit, SIGNAL( dataChanged( ) ), SIGNAL( dataChanged( ) ) ); - connect( m_pValueEdit, SIGNAL( dataChanged( ) ), SIGNAL( dataChanged( ) ) ); + connect( m_pIndexEdit, TQT_SIGNAL( dataChanged( ) ), TQT_SIGNAL( dataChanged( ) ) ); + connect( m_pValueEdit, TQT_SIGNAL( dataChanged( ) ), TQT_SIGNAL( dataChanged( ) ) ); } void PMPaletteValueEdit::setIndex( int idx ) |