summaryrefslogtreecommitdiffstats
path: root/kchart/kchartWizardSetupDataPage.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:30:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-13 20:22:52 +0900
commite1b37ac1936f81994a2c1aa2778298fbc757531f (patch)
tree2e2df5ea5786d581b10e51e0cbde9f4921697b2f /kchart/kchartWizardSetupDataPage.cpp
parentd08f80f854355e446d1c6be0eb50166646f7f291 (diff)
downloadkoffice-e1b37ac1.tar.gz
koffice-e1b37ac1.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit c0332621bc998c9786f4841e86a62b7711fe4abf)
Diffstat (limited to 'kchart/kchartWizardSetupDataPage.cpp')
-rw-r--r--kchart/kchartWizardSetupDataPage.cpp16
1 files changed, 8 insertions, 8 deletions
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 );