diff options
Diffstat (limited to 'kchart/kchartParameterConfigPage.cpp')
| -rw-r--r-- | kchart/kchartParameterConfigPage.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kchart/kchartParameterConfigPage.cpp b/kchart/kchartParameterConfigPage.cpp index 770b1c23a..b86ccf121 100644 --- a/kchart/kchartParameterConfigPage.cpp +++ b/kchart/kchartParameterConfigPage.cpp @@ -63,13 +63,13 @@ KChartParameterConfigPage::KChartParameterConfigPage( KChartParams* params, yaxis = new TQCheckBox( i18n( "Y-axis" ), gb1); TQWhatsThis::add(yaxis, i18n("If this is checked, the Y-axis is shown. If you uncheck this option, the Y-axis and the Y grid lines will not be displayed anymore.")); - connect( yaxis, TQT_SIGNAL( clicked() ), this, TQT_SLOT( axisChanged() ) ); + connect( yaxis, TQ_SIGNAL( clicked() ), this, TQ_SLOT( axisChanged() ) ); grid1->addWidget(yaxis, 1, 0); //gb1->insert(yaxis); xaxis = new TQCheckBox( i18n( "X-axis" ), gb1 ); TQWhatsThis::add(xaxis, i18n("If this is checked, the X-axis is shown. If you uncheck this option, the X-axis and the X grid lines will not be displayed anymore.")); - connect( xaxis, TQT_SIGNAL( clicked() ), this, TQT_SLOT( axisChanged() ) ); + connect( xaxis, TQ_SIGNAL( clicked() ), this, TQ_SLOT( axisChanged() ) ); grid1->addWidget(xaxis, 2, 0); //gb1->insert(xaxis); @@ -131,8 +131,8 @@ KChartParameterConfigPage::KChartParameterConfigPage( KChartParams* params, automatic_precision->setChecked(true); max = new TQRadioButton( i18n("Decimal precision:"), precision); TQWhatsThis::add(max, i18n("This sets the Y-axis precision. For example, if you choose a precision of 2, the value 5 will be displayed as 5.00 alongside the Y-axis.")); - connect(automatic_precision, TQT_SIGNAL(toggled(bool)), this, - TQT_SLOT(automatic_precision_toggled(bool)) ); + connect(automatic_precision, TQ_SIGNAL(toggled(bool)), this, + TQ_SLOT(automatic_precision_toggled(bool)) ); maximum_length = new TQSpinBox(0, 15, 1, precision ); TQWhatsThis::add(maximum_length, i18n("Set the precision you want to display for the Y-axis, if you choose Decimal precision. The range is 0 to 15; 2 being the default.")); maximum_length->setValue(2); @@ -167,10 +167,10 @@ KChartParameterConfigPage::KChartParameterConfigPage( KChartParams* params, grid1->activate(); grid2->activate(); #endif - /*connect( grid, TQT_SIGNAL( toggled( bool ) ), - this, TQT_SLOT( changeState( bool ) ) );*/ - /*connect( xaxis, TQT_SIGNAL( toggled( bool ) ), - this, TQT_SLOT( changeXaxisState( bool ) ) );*/ + /*connect( grid, TQ_SIGNAL( toggled( bool ) ), + this, TQ_SLOT( changeState( bool ) ) );*/ + /*connect( xaxis, TQ_SIGNAL( toggled( bool ) ), + this, TQ_SLOT( changeXaxisState( bool ) ) );*/ } |
