diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:05:42 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:05:42 +0900 |
commit | 814bf5fc4f403c13b0d8274c7f13fbef183c5c84 (patch) | |
tree | 96dc8b35683388ab4d17734791984f05d2e82621 /tqt3integration | |
parent | 873f0a21c92bc7b737cade48526afddc219aacc3 (diff) | |
download | tdebase-814bf5fc4f403c13b0d8274c7f13fbef183c5c84.tar.gz tdebase-814bf5fc4f403c13b0d8274c7f13fbef183c5c84.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tqt3integration')
-rw-r--r-- | tqt3integration/libtqttde/tqttde.h | 2 | ||||
-rw-r--r-- | tqt3integration/module/module.h | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/tqt3integration/libtqttde/tqttde.h b/tqt3integration/libtqttde/tqttde.h index 2d634df07..06cba49ed 100644 --- a/tqt3integration/libtqttde/tqttde.h +++ b/tqt3integration/libtqttde/tqttde.h @@ -26,7 +26,7 @@ class tqttde_EventLoop : public TQObject { - Q_OBJECT + TQ_OBJECT public slots: void block( bool ); diff --git a/tqt3integration/module/module.h b/tqt3integration/module/module.h index cf136aa8c..f32ef85e2 100644 --- a/tqt3integration/module/module.h +++ b/tqt3integration/module/module.h @@ -36,7 +36,7 @@ namespace TDEIntegration class Module : public KDEDModule { - Q_OBJECT + TQ_OBJECT public: Module( const TQCString& obj ); @@ -69,7 +69,7 @@ class Module class KFileDialog : public ::KFileDialog { - Q_OBJECT + TQ_OBJECT public: KFileDialog(const TQString& startDir, const TQString& filter, @@ -86,7 +86,7 @@ class KFileDialog class KDirSelectDialog : public ::KDirSelectDialog { - Q_OBJECT + TQ_OBJECT public: KDirSelectDialog(const TQString& startDir, bool localOnly, @@ -103,7 +103,7 @@ class KDirSelectDialog class KColorDialog : public ::KColorDialog { - Q_OBJECT + TQ_OBJECT public: KColorDialog( TQWidget *parent, const char *name, bool modal ) @@ -118,7 +118,7 @@ class KColorDialog class TDEFontDialog : public ::TDEFontDialog { - Q_OBJECT + TQ_OBJECT public: TDEFontDialog( TQWidget *parent, const char *name, bool onlyFixed, bool modal, @@ -135,7 +135,7 @@ class TDEFontDialog class KDialogBase : public ::KDialogBase { - Q_OBJECT + TQ_OBJECT public: KDialogBase( const TQString &caption, int buttonMask=Yes|No|Cancel, |