summaryrefslogtreecommitdiffstats
path: root/kchart/kchartWizardLabelsLegendPage.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-04 10:30:32 +0900
committerMichele Calgaro <[email protected]>2024-01-04 12:36:03 +0900
commitc0332621bc998c9786f4841e86a62b7711fe4abf (patch)
tree38b3ab6688de7a9396a1c5993a8ec265f5f33b64 /kchart/kchartWizardLabelsLegendPage.cpp
parent6c81ff8d61ec679e735d3fbd875583b12f0ef0a5 (diff)
downloadkoffice-c0332621bc998c9786f4841e86a62b7711fe4abf.tar.gz
koffice-c0332621bc998c9786f4841e86a62b7711fe4abf.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kchart/kchartWizardLabelsLegendPage.cpp')
-rw-r--r--kchart/kchartWizardLabelsLegendPage.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/kchart/kchartWizardLabelsLegendPage.cpp b/kchart/kchartWizardLabelsLegendPage.cpp
index 3899a276..fdcf99f4 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 &)));
}