diff options
Diffstat (limited to 'kpresenter/KPrPieProperty.cpp')
-rw-r--r-- | kpresenter/KPrPieProperty.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kpresenter/KPrPieProperty.cpp b/kpresenter/KPrPieProperty.cpp index 6aeffe3f..44996750 100644 --- a/kpresenter/KPrPieProperty.cpp +++ b/kpresenter/KPrPieProperty.cpp @@ -20,7 +20,7 @@ #include "KPrPieProperty.h" -#include <qlayout.h> +#include <tqlayout.h> #include <kcombobox.h> #include <klocale.h> @@ -31,21 +31,21 @@ #include "KPrPiePreview.h" -KPrPieProperty::KPrPieProperty( QWidget *parent, const char *name, KPrPieValueCmd::PieValues pieValues ) -: QWidget( parent, name ) +KPrPieProperty::KPrPieProperty( TQWidget *tqparent, const char *name, KPrPieValueCmd::PieValues pieValues ) +: TQWidget( tqparent, name ) , m_pieValues( pieValues ) { - QVBoxLayout *layout = new QVBoxLayout( this ); - layout->addWidget( m_ui = new PiePropertyUI( this ) ); + TQVBoxLayout *tqlayout = new TQVBoxLayout( this ); + tqlayout->addWidget( m_ui = new PiePropertyUI( this ) ); m_ui->typeCombo->insertItem( i18n( "Pie" ) ); m_ui->typeCombo->insertItem( i18n( "Arc" ) ); m_ui->typeCombo->insertItem( i18n( "Chord" ) ); - connect( m_ui->typeCombo, SIGNAL( activated( int ) ), this, SLOT( slotTypeChanged( int ) ) ); + connect( m_ui->typeCombo, TQT_SIGNAL( activated( int ) ), this, TQT_SLOT( slotTypeChanged( int ) ) ); - connect( m_ui->angleInput, SIGNAL( valueChanged( int ) ), this, SLOT( slotAngleChanged( int ) ) ); - connect( m_ui->lengthInput, SIGNAL( valueChanged( int ) ), this, SLOT( slotLengthChanged( int ) ) ); + connect( m_ui->angleInput, TQT_SIGNAL( valueChanged( int ) ), this, TQT_SLOT( slotAngleChanged( int ) ) ); + connect( m_ui->lengthInput, TQT_SIGNAL( valueChanged( int ) ), this, TQT_SLOT( slotLengthChanged( int ) ) ); slotReset(); } |