From e1b37ac1936f81994a2c1aa2778298fbc757531f Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 4 Jan 2024 10:30:32 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit c0332621bc998c9786f4841e86a62b7711fe4abf) --- kchart/kchartWizardSetupDataPage.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'kchart/kchartWizardSetupDataPage.cpp') diff --git a/kchart/kchartWizardSetupDataPage.cpp b/kchart/kchartWizardSetupDataPage.cpp index 1d057d4ca..2e8725bb0 100644 --- a/kchart/kchartWizardSetupDataPage.cpp +++ b/kchart/kchartWizardSetupDataPage.cpp @@ -27,16 +27,16 @@ KChartWizardSetupDataPage::KChartWizardSetupDataPage( TQWidget* parent, datarow = new TQRadioButton( this, "RadioButton_1" ); datarow->setGeometry( 270, 40, 100, 20 ); datarow->setText( i18n("Rows") ); - connect( datarow, TQT_SIGNAL( clicked() ), - this, TQT_SLOT( dataInRowsClicked() ) ); + connect( datarow, TQ_SIGNAL( clicked() ), + this, TQ_SLOT( dataInRowsClicked() ) ); tmpTQGroupBox->insert( datarow ); datacol = new TQRadioButton( this, "RadioButton_2" ); datacol->setGeometry( 270, 60, 100, 20 ); datacol->setText( i18n("Columns") ); datacol->setChecked( true ); - connect( datarow, TQT_SIGNAL( clicked() ), - this, TQT_SLOT( dataInColsClicked() ) ); + connect( datarow, TQ_SIGNAL( clicked() ), + this, TQ_SLOT( dataInColsClicked() ) ); tmpTQGroupBox->insert( datacol ); TQLabel* tmpTQLabel; @@ -49,8 +49,8 @@ KChartWizardSetupDataPage::KChartWizardSetupDataPage( TQWidget* parent, coldescript = new TQCheckBox( this, "CheckBox_3" ); coldescript->setGeometry( 260, 110, 20, 30 ); coldescript->setChecked( true ); - connect( coldescript, TQT_SIGNAL( toggled( bool ) ), - this, TQT_SLOT( firstColumnIsDescriptionToggled( bool ) ) ); + connect( coldescript, TQ_SIGNAL( toggled( bool ) ), + this, TQ_SLOT( firstColumnIsDescriptionToggled( bool ) ) ); coldescript->setText( "" ); descrBG->insert( coldescript ); @@ -61,8 +61,8 @@ KChartWizardSetupDataPage::KChartWizardSetupDataPage( TQWidget* parent, rowdescript = new TQCheckBox( this, "CheckBox_4" ); rowdescript->setGeometry( 260, 150, 20, 30 ); - connect( rowdescript, TQT_SIGNAL( toggled( bool ) ), - this, TQT_SLOT( firstRowIsDescriptionToggled( bool ) ) ); + connect( rowdescript, TQ_SIGNAL( toggled( bool ) ), + this, TQ_SLOT( firstRowIsDescriptionToggled( bool ) ) ); rowdescript->setText( "" ); descrBG->insert( rowdescript ); -- cgit v1.2.3