summaryrefslogtreecommitdiffstats
path: root/kmplot
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:06:08 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:06:08 +0900
commitf9eac0ec4d7dbbc84f43db3d5a80cc932d5754b8 (patch)
treecc78f7cd0c52eafa75211faec743bcbac4047491 /kmplot
parent722b8b58ec7c9696be84890045d29e0203d3e20f (diff)
downloadtdeedu-f9eac0ec4d7dbbc84f43db3d5a80cc932d5754b8.tar.gz
tdeedu-f9eac0ec4d7dbbc84f43db3d5a80cc932d5754b8.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kmplot')
-rw-r--r--kmplot/kmplot/FktDlg.h2
-rw-r--r--kmplot/kmplot/MainDlg.h6
-rw-r--r--kmplot/kmplot/View.h2
-rw-r--r--kmplot/kmplot/coordsconfigdialog.h2
-rw-r--r--kmplot/kmplot/editfunction.h2
-rw-r--r--kmplot/kmplot/kconstanteditor.h2
-rw-r--r--kmplot/kmplot/keditconstant.h2
-rw-r--r--kmplot/kmplot/keditparametric.h2
-rw-r--r--kmplot/kmplot/keditpolar.h2
-rw-r--r--kmplot/kmplot/kminmax.h2
-rw-r--r--kmplot/kmplot/kmplot.h2
-rw-r--r--kmplot/kmplot/kmplotprogress.h2
-rw-r--r--kmplot/kmplot/kparametereditor.h2
-rw-r--r--kmplot/kmplot/kprinterdlg.h2
-rw-r--r--kmplot/kmplot/ksliderwindow.h2
15 files changed, 17 insertions, 17 deletions
diff --git a/kmplot/kmplot/FktDlg.h b/kmplot/kmplot/FktDlg.h
index 328d91a4..933e61fa 100644
--- a/kmplot/kmplot/FktDlg.h
+++ b/kmplot/kmplot/FktDlg.h
@@ -44,7 +44,7 @@ class XParser;
*/
class FktDlg : public FktDlgData
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kmplot/kmplot/MainDlg.h b/kmplot/kmplot/MainDlg.h
index f258999c..8efad0aa 100644
--- a/kmplot/kmplot/MainDlg.h
+++ b/kmplot/kmplot/MainDlg.h
@@ -69,7 +69,7 @@ class BrowserExtension;
*/
class MainDlg : public KParts::ReadOnlyPart, virtual public MainDlgIface
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -216,7 +216,7 @@ protected slots:
class KmPlotPartFactory : public KParts::Factory
{
- Q_OBJECT
+ TQ_OBJECT
public:
KmPlotPartFactory();
@@ -233,7 +233,7 @@ private:
class BrowserExtension : public KParts::BrowserExtension
{
- Q_OBJECT
+ TQ_OBJECT
public:
BrowserExtension(MainDlg*);
diff --git a/kmplot/kmplot/View.h b/kmplot/kmplot/View.h
index c197d237..d219f0f5 100644
--- a/kmplot/kmplot/View.h
+++ b/kmplot/kmplot/View.h
@@ -66,7 +66,7 @@ enum ZoomMode
*/
class View : public TQWidget, virtual public ViewIface
{
- Q_OBJECT
+ TQ_OBJECT
public:
/// Contructor sets up the parser, too.
diff --git a/kmplot/kmplot/coordsconfigdialog.h b/kmplot/kmplot/coordsconfigdialog.h
index 716e2909..02ecfc9f 100644
--- a/kmplot/kmplot/coordsconfigdialog.h
+++ b/kmplot/kmplot/coordsconfigdialog.h
@@ -38,7 +38,7 @@ class SettingsPageCoords;
///
class CoordsConfigDialog : public TDEConfigDialog
{
- Q_OBJECT
+ TQ_OBJECT
public:
CoordsConfigDialog(XParser *p, TQWidget *parent = 0);
diff --git a/kmplot/kmplot/editfunction.h b/kmplot/kmplot/editfunction.h
index a034b6e1..204a4bc2 100644
--- a/kmplot/kmplot/editfunction.h
+++ b/kmplot/kmplot/editfunction.h
@@ -38,7 +38,7 @@ class EditIntegralPage;
/** @short Dialog window editing a function plot and its properties. */
class EditFunction : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
/// @param parser points to the parser instance.
diff --git a/kmplot/kmplot/kconstanteditor.h b/kmplot/kmplot/kconstanteditor.h
index 62be39f6..6357c700 100644
--- a/kmplot/kmplot/kconstanteditor.h
+++ b/kmplot/kmplot/kconstanteditor.h
@@ -36,7 +36,7 @@
/// Handles all the constants.
class KConstantEditor : public QConstantEditor
{
-Q_OBJECT
+TQ_OBJECT
public:
KConstantEditor(View *, TQWidget *parent = 0, const char *name = 0);
diff --git a/kmplot/kmplot/keditconstant.h b/kmplot/kmplot/keditconstant.h
index 90e2d9cd..cd742f6c 100644
--- a/kmplot/kmplot/keditconstant.h
+++ b/kmplot/kmplot/keditconstant.h
@@ -35,7 +35,7 @@
/// A small dialog for creating an editing constants
class KEditConstant : public QEditConstant
{
- Q_OBJECT
+ TQ_OBJECT
public:
KEditConstant(XParser *p, char &, TQString &,TQWidget *parent = 0, const char *name = 0);
diff --git a/kmplot/kmplot/keditparametric.h b/kmplot/kmplot/keditparametric.h
index bed49aef..0fb3d3ba 100644
--- a/kmplot/kmplot/keditparametric.h
+++ b/kmplot/kmplot/keditparametric.h
@@ -35,7 +35,7 @@ class XParser;
/** @short Dialog window editing a parametric plot and its properties. */
class KEditParametric : public QEditParametric
{
- Q_OBJECT
+ TQ_OBJECT
public:
/// @param parser points to the parser instance.
diff --git a/kmplot/kmplot/keditpolar.h b/kmplot/kmplot/keditpolar.h
index 09dcaf46..8a23c857 100644
--- a/kmplot/kmplot/keditpolar.h
+++ b/kmplot/kmplot/keditpolar.h
@@ -35,7 +35,7 @@ class XParser;
/** @short Dialog window editing a polar plot and its properties. */
class KEditPolar : public QEditPolar
{
- Q_OBJECT
+ TQ_OBJECT
public:
/// @param parser points to the parser instance.
diff --git a/kmplot/kmplot/kminmax.h b/kmplot/kmplot/kminmax.h
index 46f028a1..78c92739 100644
--- a/kmplot/kmplot/kminmax.h
+++ b/kmplot/kmplot/kminmax.h
@@ -35,7 +35,7 @@
/// KMinMax handles all the dialogs for the items in the tool-menu.
class KMinMax : public QMinMax
{
-Q_OBJECT
+TQ_OBJECT
public:
KMinMax(View *, TQWidget *parent = 0, const char *name = 0);
diff --git a/kmplot/kmplot/kmplot.h b/kmplot/kmplot/kmplot.h
index 4bb4a26e..701a9ae0 100644
--- a/kmplot/kmplot/kmplot.h
+++ b/kmplot/kmplot/kmplot.h
@@ -48,7 +48,7 @@ class TDEToggleAction;
*/
class KmPlot : public KParts::MainWindow, virtual public KmPlotIface
{
- Q_OBJECT
+ TQ_OBJECT
public:
/**
diff --git a/kmplot/kmplot/kmplotprogress.h b/kmplot/kmplot/kmplotprogress.h
index 549fb09c..329bd8b8 100644
--- a/kmplot/kmplot/kmplotprogress.h
+++ b/kmplot/kmplot/kmplotprogress.h
@@ -32,7 +32,7 @@
/// The progress-widget in the statusbar which appears when drawing integrals
class KmPlotProgress: public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
KmPlotProgress( TQWidget* parent = 0, const char* name = 0 );
diff --git a/kmplot/kmplot/kparametereditor.h b/kmplot/kmplot/kparametereditor.h
index 47702010..3c3b6c9c 100644
--- a/kmplot/kmplot/kparametereditor.h
+++ b/kmplot/kmplot/kparametereditor.h
@@ -37,7 +37,7 @@ class ParameterValueList;
/// This class handles the parameter values: it can create, remove, edit and import values.
class KParameterEditor : public QParameterEditor
{
-Q_OBJECT
+TQ_OBJECT
public:
KParameterEditor(XParser *, TQValueList<ParameterValueItem> *, TQWidget *parent = 0, const char *name = 0);
diff --git a/kmplot/kmplot/kprinterdlg.h b/kmplot/kmplot/kprinterdlg.h
index fef92b8d..92a57246 100644
--- a/kmplot/kmplot/kprinterdlg.h
+++ b/kmplot/kmplot/kprinterdlg.h
@@ -41,7 +41,7 @@
*/
class KPrinterDlg : public KPrintDialogPage
{
- Q_OBJECT
+ TQ_OBJECT
public:
/// Getting the common arguments.
diff --git a/kmplot/kmplot/ksliderwindow.h b/kmplot/kmplot/ksliderwindow.h
index e19b25d2..d0d85d46 100644
--- a/kmplot/kmplot/ksliderwindow.h
+++ b/kmplot/kmplot/ksliderwindow.h
@@ -33,7 +33,7 @@
/** @short Slider window for changing a parameter value */
class KSliderWindow : public SliderWindow
{
- Q_OBJECT
+ TQ_OBJECT
public:
/// @param parent points to the parent widget.