summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 14:32:39 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 14:32:39 +0900
commit66460f691f0799c2c4e4f1f55940029a95a5005d (patch)
tree44275db23200d0dd14eebfc6b31fc74149c094de
parent16994d309bf0336e8490003ab4955d20b7baf239 (diff)
downloadmathemagics-66460f691f0799c2c4e4f1f55940029a95a5005d.tar.gz
mathemagics-66460f691f0799c2c4e4f1f55940029a95a5005d.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--mathemagics/keypad.h4
-rw-r--r--mathemagics/kparanoidline.h2
-rw-r--r--mathemagics/mathemagics.h6
-rw-r--r--mathemagics/optiondialog.h2
-rw-r--r--mathemagics/stacklevel.h2
5 files changed, 8 insertions, 8 deletions
diff --git a/mathemagics/keypad.h b/mathemagics/keypad.h
index 2044e52..311d6d5 100644
--- a/mathemagics/keypad.h
+++ b/mathemagics/keypad.h
@@ -9,7 +9,7 @@ class TQCloseEvent;
class CharButton : public TQPushButton
{
- Q_OBJECT
+ TQ_OBJECT
public:
CharButton(const TQString &text, TQWidget *parent=0, const char *name=0);
@@ -27,7 +27,7 @@ private:
class MathKeypad : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
MathKeypad(TQWidget *parent=0, const char *name=0);
diff --git a/mathemagics/kparanoidline.h b/mathemagics/kparanoidline.h
index edb5d58..c824f96 100644
--- a/mathemagics/kparanoidline.h
+++ b/mathemagics/kparanoidline.h
@@ -5,7 +5,7 @@
class KParanoidLine : public KLineEdit
{
- Q_OBJECT
+ TQ_OBJECT
public:
KParanoidLine(TQWidget *parent=0, const char *name=0);
diff --git a/mathemagics/mathemagics.h b/mathemagics/mathemagics.h
index 55995a4..890b46e 100644
--- a/mathemagics/mathemagics.h
+++ b/mathemagics/mathemagics.h
@@ -31,7 +31,7 @@ class MathKeypad;
class Mathemagics : public TDEMainWindow
{
- Q_OBJECT
+ TQ_OBJECT
public:
/** construtor */
@@ -201,7 +201,7 @@ private:
class EditAction : public TDEAction
{
- Q_OBJECT
+ TQ_OBJECT
public:
EditAction( const TQString& text, int accel, const TQObject *receiver, const char *member, TQObject* parent, const char* name );
@@ -228,7 +228,7 @@ private:
class ComboAction : public TDEAction
{
- Q_OBJECT
+ TQ_OBJECT
public:
ComboAction( const TQString& text, int accel, const TQObject *receiver, const char *member, TQObject* parent, const char* name );
diff --git a/mathemagics/optiondialog.h b/mathemagics/optiondialog.h
index ddad569..3f32427 100644
--- a/mathemagics/optiondialog.h
+++ b/mathemagics/optiondialog.h
@@ -13,7 +13,7 @@ class TQSpinBox;
class ConfigureDialog : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public:
ConfigureDialog(TQWidget *parent = 0, char *name = 0, bool modal = 0);
diff --git a/mathemagics/stacklevel.h b/mathemagics/stacklevel.h
index 226944f..8f3aeef 100644
--- a/mathemagics/stacklevel.h
+++ b/mathemagics/stacklevel.h
@@ -9,7 +9,7 @@ class TQWidget;
class StackLevel : public TQHBox
{
- Q_OBJECT
+ TQ_OBJECT
public:
StackLevel(int, TQWidget *parent=0, const char *name=0);