diff options
author | Michele Calgaro <[email protected]> | 2023-07-20 15:05:42 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-20 15:05:42 +0900 |
commit | 814bf5fc4f403c13b0d8274c7f13fbef183c5c84 (patch) | |
tree | 96dc8b35683388ab4d17734791984f05d2e82621 /tqt3integration/module/module.h | |
parent | 873f0a21c92bc7b737cade48526afddc219aacc3 (diff) | |
download | tdebase-814bf5fc4f403c13b0d8274c7f13fbef183c5c84.tar.gz tdebase-814bf5fc4f403c13b0d8274c7f13fbef183c5c84.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tqt3integration/module/module.h')
-rw-r--r-- | tqt3integration/module/module.h | 12 |
1 files changed, 6 insertions, 6 deletions
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, |