diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:30:32 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 20:22:52 +0900 |
| commit | e1b37ac1936f81994a2c1aa2778298fbc757531f (patch) | |
| tree | 2e2df5ea5786d581b10e51e0cbde9f4921697b2f /kchart/kchartWizardLabelsLegendPage.cpp | |
| parent | d08f80f854355e446d1c6be0eb50166646f7f291 (diff) | |
| download | koffice-e1b37ac1936f81994a2c1aa2778298fbc757531f.tar.gz koffice-e1b37ac1936f81994a2c1aa2778298fbc757531f.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/kchartWizardLabelsLegendPage.cpp')
| -rw-r--r-- | kchart/kchartWizardLabelsLegendPage.cpp | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/kchart/kchartWizardLabelsLegendPage.cpp b/kchart/kchartWizardLabelsLegendPage.cpp index 3899a2766..fdcf99f41 100644 --- a/kchart/kchartWizardLabelsLegendPage.cpp +++ b/kchart/kchartWizardLabelsLegendPage.cpp @@ -168,31 +168,31 @@ KChartWizardLabelsLegendPage::KChartWizardLabelsLegendPage( TQWidget* parent, KC title=_chart->params()->header1Font(); grid1->addWidget(tmpTQGroupBox,0,0); - connect(xtitlefont,TQT_SIGNAL(clicked()),this,TQT_SLOT(changeXLabelFont())); - connect(ytitlefont,TQT_SIGNAL(clicked()),this,TQT_SLOT(changeYLabelFont())); + connect(xtitlefont,TQ_SIGNAL(clicked()),this,TQ_SLOT(changeXLabelFont())); + connect(ytitlefont,TQ_SIGNAL(clicked()),this,TQ_SLOT(changeYLabelFont())); #if 0 - connect(ytitle2font,TQT_SIGNAL(clicked()),this,TQT_SLOT(changeY2LabelFont())); + connect(ytitle2font,TQ_SIGNAL(clicked()),this,TQ_SLOT(changeY2LabelFont())); #endif - connect(titlefont,TQT_SIGNAL(clicked()),this,TQT_SLOT(changeTitleFont())); - connect(legendTitleFont,TQT_SIGNAL(clicked()),this,TQT_SLOT(changeLegendTitleFont())); + connect(titlefont,TQ_SIGNAL(clicked()),this,TQ_SLOT(changeTitleFont())); + connect(legendTitleFont,TQ_SIGNAL(clicked()),this,TQ_SLOT(changeLegendTitleFont())); - connect(legendTextFont,TQT_SIGNAL(clicked()),this,TQT_SLOT(changeLegendTextFont())); + connect(legendTextFont,TQ_SIGNAL(clicked()),this,TQ_SLOT(changeLegendTextFont())); - connect(xtitlecolor,TQT_SIGNAL(changed( const TQColor & )), - this,TQT_SLOT(changeXLabelColor(const TQColor &))); - connect(ytitlecolor,TQT_SIGNAL(changed( const TQColor & )), - this,TQT_SLOT(changeYLabelColor(const TQColor &))); - connect(titlecolor,TQT_SIGNAL(changed( const TQColor & )), - this,TQT_SLOT(changeTitleColor(const TQColor &))); + connect(xtitlecolor,TQ_SIGNAL(changed( const TQColor & )), + this,TQ_SLOT(changeXLabelColor(const TQColor &))); + connect(ytitlecolor,TQ_SIGNAL(changed( const TQColor & )), + this,TQ_SLOT(changeYLabelColor(const TQColor &))); + connect(titlecolor,TQ_SIGNAL(changed( const TQColor & )), + this,TQ_SLOT(changeTitleColor(const TQColor &))); #if 0 - connect(ytitle2color,TQT_SIGNAL(changed( const TQColor & )), - this,TQT_SLOT(changeYTitle2Color(const TQColor &))); + connect(ytitle2color,TQ_SIGNAL(changed( const TQColor & )), + this,TQ_SLOT(changeYTitle2Color(const TQColor &))); #endif - connect(legendTitleColor,TQT_SIGNAL(changed( const TQColor & )), - this,TQT_SLOT(changeLegendTitleColor(const TQColor &))); + connect(legendTitleColor,TQ_SIGNAL(changed( const TQColor & )), + this,TQ_SLOT(changeLegendTitleColor(const TQColor &))); - connect(legendTextColor,TQT_SIGNAL(changed( const TQColor & )), - this,TQT_SLOT(changeLegendTextColor(const TQColor &))); + connect(legendTextColor,TQ_SIGNAL(changed( const TQColor & )), + this,TQ_SLOT(changeLegendTextColor(const TQColor &))); } |
