summaryrefslogtreecommitdiffstats
path: root/kchart/kchartParameterConfigPage.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-25 05:28:35 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-25 05:28:35 +0000
commitf008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch)
tree8e9244c4d4957c36be81e15b566b4aa5ea26c982 /kchart/kchartParameterConfigPage.h
parent1210f27b660efb7b37ff43ec68763e85a403471f (diff)
downloadkoffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz
koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kchart/kchartParameterConfigPage.h')
-rw-r--r--kchart/kchartParameterConfigPage.h53
1 files changed, 27 insertions, 26 deletions
diff --git a/kchart/kchartParameterConfigPage.h b/kchart/kchartParameterConfigPage.h
index 0979139c..afc448a1 100644
--- a/kchart/kchartParameterConfigPage.h
+++ b/kchart/kchartParameterConfigPage.h
@@ -20,25 +20,26 @@
#ifndef __KCHARTPARAMETERCONFIGPAGE_H__
#define __KCHARTPARAMETERCONFIGPAGE_H__
-#include <qwidget.h>
+#include <tqwidget.h>
#include <kcolorbutton.h>
-class QSpinBox;
-class QCheckBox;
-class QLineEdit;
-class QRadioButton;
+class TQSpinBox;
+class TQCheckBox;
+class TQLineEdit;
+class TQRadioButton;
namespace KChart
{
class KChartParams;
-class KChartParameterConfigPage : public QWidget
+class KChartParameterConfigPage : public TQWidget
{
Q_OBJECT
+ TQ_OBJECT
public:
- KChartParameterConfigPage( KChartParams* params, QWidget* parent );
+ KChartParameterConfigPage( KChartParams* params, TQWidget* tqparent );
void init();
void apply();
public slots:
@@ -49,27 +50,27 @@ private:
KChartParams* _params;
// Checkboxes on the left side of the tab.
- QCheckBox *grid;
- QCheckBox *xaxis;
- QCheckBox *yaxis;
- //QCheckBox *yaxis2;
- //QCheckBox *xlabel;
- QCheckBox *lineMarker;
- //QCheckBox *llabel;
+ TQCheckBox *grid;
+ TQCheckBox *xaxis;
+ TQCheckBox *yaxis;
+ //TQCheckBox *yaxis2;
+ //TQCheckBox *xlabel;
+ TQCheckBox *lineMarker;
+ //TQCheckBox *llabel;
// Lineedits on the right side of the tab.
- QLineEdit *xtitle;
- QLineEdit *ytitle;
-
- QRadioButton *lin;
- QRadioButton *log;
-
- QRadioButton *max;
- QSpinBox *maximum_length;
- //QLineEdit *ylabel_fmt;
- //QLineEdit *ytitle2;
- //QLineEdit *ylabel2_fmt;
- //QLineEdit *annotation;
+ TQLineEdit *xtitle;
+ TQLineEdit *ytitle;
+
+ TQRadioButton *lin;
+ TQRadioButton *log;
+
+ TQRadioButton *max;
+ TQSpinBox *maximum_length;
+ //TQLineEdit *ylabel_fmt;
+ //TQLineEdit *ytitle2;
+ //TQLineEdit *ylabel2_fmt;
+ //TQLineEdit *annotation;
};
} //KChart namespace