diff options
Diffstat (limited to 'kchart/kchartParameterPolarConfigPage.cc')
-rw-r--r-- | kchart/kchartParameterPolarConfigPage.cc | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/kchart/kchartParameterPolarConfigPage.cc b/kchart/kchartParameterPolarConfigPage.cc index 8a6ff3dc..08f470e2 100644 --- a/kchart/kchartParameterPolarConfigPage.cc +++ b/kchart/kchartParameterPolarConfigPage.cc @@ -26,15 +26,15 @@ #include <kdebug.h> #include <kdialog.h> -#include <qlayout.h> -#include <qlabel.h> -#include <qbuttongroup.h> -#include <qcheckbox.h> -#include <qlineedit.h> -#include <qradiobutton.h> -#include <qspinbox.h> -#include <qvbuttongroup.h> -#include <qwhatsthis.h> +#include <tqlayout.h> +#include <tqlabel.h> +#include <tqbuttongroup.h> +#include <tqcheckbox.h> +#include <tqlineedit.h> +#include <tqradiobutton.h> +#include <tqspinbox.h> +#include <tqvbuttongroup.h> +#include <tqwhatsthis.h> #include "kchart_params.h" @@ -42,25 +42,25 @@ namespace KChart { KChartParameterPolarConfigPage::KChartParameterPolarConfigPage( KChartParams* params, - QWidget* parent ) : - QWidget( parent ),_params( params ) + TQWidget* tqparent ) : + TQWidget( tqparent ),_params( params ) { - QVBoxLayout *grid1 = new QVBoxLayout(this); - QVButtonGroup* gb = new QVButtonGroup( i18n( "Parameter" ), this ); + TQVBoxLayout *grid1 = new TQVBoxLayout(this); + TQVButtonGroup* gb = new TQVButtonGroup( i18n( "Parameter" ), this ); grid1->addWidget(gb); - polarMarker=new QCheckBox(i18n("Polar marker"), gb); - QWhatsThis::add(polarMarker, i18n("If this is checked, the polar markers are shown; otherwise they are not.")); - showCircularLabel = new QCheckBox(i18n("Show circular label"), gb); - QWhatsThis::add(showCircularLabel, i18n("Toggle the circular label display.")); + polarMarker=new TQCheckBox(i18n("Polar marker"), gb); + TQWhatsThis::add(polarMarker, i18n("If this is checked, the polar markers are shown; otherwise they are not.")); + showCircularLabel = new TQCheckBox(i18n("Show circular label"), gb); + TQWhatsThis::add(showCircularLabel, i18n("Toggle the circular label display.")); - QLabel *label = new QLabel( i18n( "Zero degree position:" ), gb ); - angle = new QSpinBox(-359, 359, 1, gb); - QWhatsThis::add(angle, i18n("Set the position for the X axis (horizontal) from -359 to 359. Default is 0.")); + TQLabel *label = new TQLabel( i18n( "Zero degree position:" ), gb ); + angle = new TQSpinBox(-359, 359, 1, gb); + TQWhatsThis::add(angle, i18n("Set the position for the X axis (horizontal) from -359 to 359. Default is 0.")); - label=new QLabel(i18n("Line width:"), gb); - lineWidth=new QSpinBox(gb); - QWhatsThis::add(lineWidth, i18n("Set the width for the chart lines. 0 is default and is the thinnest.")); + label=new TQLabel(i18n("Line width:"), gb); + lineWidth=new TQSpinBox(gb); + TQWhatsThis::add(lineWidth, i18n("Set the width for the chart lines. 0 is default and is the thinnest.")); grid1->activate(); } |