diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:05:05 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-21 17:18:45 +0900 |
commit | 98d99130f243fb128eb4db0386d01ff8622940a5 (patch) | |
tree | 647aa4ebccb2e7b32f4867a9fc60743f5ee5484e /kate/filetemplates | |
parent | 7ba98b09b6bef9e26ae4f0e2de1bd48db4bce757 (diff) | |
download | tdeaddons-98d99130f243fb128eb4db0386d01ff8622940a5.tar.gz tdeaddons-98d99130f243fb128eb4db0386d01ff8622940a5.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 826b1b771cc20f515acf936bd3a2dcd83ce353b8)
Diffstat (limited to 'kate/filetemplates')
-rw-r--r-- | kate/filetemplates/plugin/filetemplates.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kate/filetemplates/plugin/filetemplates.h b/kate/filetemplates/plugin/filetemplates.h index 621d5ff..38b34d4 100644 --- a/kate/filetemplates/plugin/filetemplates.h +++ b/kate/filetemplates/plugin/filetemplates.h @@ -38,7 +38,7 @@ class KatePluginFactory : public KLibFactory { - Q_OBJECT + TQ_OBJECT public: @@ -73,7 +73,7 @@ class KatePluginFactory : public KLibFactory */ class KateFileTemplates : public Kate::Plugin, public Kate::PluginViewInterface { - Q_OBJECT + TQ_OBJECT public: @@ -158,7 +158,7 @@ class TemplateInfo; */ class KateTemplateInfoWidget : public TQWidget { - Q_OBJECT + TQ_OBJECT public: KateTemplateInfoWidget( TQWidget *parent=0, TemplateInfo *info=0, KateFileTemplates *kft=0 ); @@ -193,7 +193,7 @@ class KateTemplateInfoWidget : public TQWidget class KateTemplateWizard : public KWizard { friend class KateFileTemplates; - Q_OBJECT + TQ_OBJECT public: KateTemplateWizard( TQWidget* parent, KateFileTemplates *ktf ); @@ -233,7 +233,7 @@ class KateTemplateWizard : public KWizard class KateTemplateManager : public TQWidget { - Q_OBJECT + TQ_OBJECT public: KateTemplateManager( KateFileTemplates *kft=0, TQWidget *parent=0, const char *name=0 ); |