diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:36:09 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 19:46:54 +0900 |
commit | 55cd4e5c5697a37d6845e2f056a16c512799023c (patch) | |
tree | 931f7e94f3a152b1bc24f3e676b5eb6651064d6b /kate/part/kateautoindent.h | |
parent | 5c2b0a1494b04e420a342ea5bae7699a812af82c (diff) | |
download | tdelibs-55cd4e5c5697a37d6845e2f056a16c512799023c.tar.gz tdelibs-55cd4e5c5697a37d6845e2f056a16c512799023c.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 8eb500c4e81229a9853e2f9bac4f39450083f3d7)
Diffstat (limited to 'kate/part/kateautoindent.h')
-rw-r--r-- | kate/part/kateautoindent.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kate/part/kateautoindent.h b/kate/part/kateautoindent.h index fe8980d15..6a499df8e 100644 --- a/kate/part/kateautoindent.h +++ b/kate/part/kateautoindent.h @@ -43,7 +43,7 @@ class KateDocument; */ class IndenterConfigPage : public TQWidget { - Q_OBJECT + TQ_OBJECT public: /** @@ -69,7 +69,7 @@ class IndenterConfigPage : public TQWidget */ class KateAutoIndent : public TQObject { - Q_OBJECT + TQ_OBJECT /** * Static methods to create and list indention modes @@ -194,7 +194,7 @@ class KateAutoIndent : public TQObject */ class KateViewIndentationAction : public TDEActionMenu { - Q_OBJECT + TQ_OBJECT public: KateViewIndentationAction(KateDocument *_doc, const TQString& text, TQObject* parent = 0, const char* name = 0); @@ -216,7 +216,7 @@ class KateViewIndentationAction : public TDEActionMenu */ class KateNormalIndent : public KateAutoIndent { - Q_OBJECT + TQ_OBJECT public: /** @@ -347,7 +347,7 @@ protected: class KateCSmartIndent : public KateNormalIndent { - Q_OBJECT + TQ_OBJECT public: KateCSmartIndent (KateDocument *doc); @@ -378,7 +378,7 @@ class KateCSmartIndent : public KateNormalIndent class KatePythonIndent : public KateNormalIndent { - Q_OBJECT + TQ_OBJECT public: KatePythonIndent (KateDocument *doc); @@ -399,7 +399,7 @@ class KatePythonIndent : public KateNormalIndent class KateXmlIndent : public KateNormalIndent { - Q_OBJECT + TQ_OBJECT public: KateXmlIndent (KateDocument *doc); @@ -428,7 +428,7 @@ class KateXmlIndent : public KateNormalIndent class KateCSAndSIndent : public KateNormalIndent { - Q_OBJECT + TQ_OBJECT public: KateCSAndSIndent (KateDocument *doc); @@ -491,7 +491,7 @@ class KateCSAndSIndent : public KateNormalIndent */ class KateVarIndent : public KateNormalIndent { - Q_OBJECT + TQ_OBJECT public: /** @@ -542,7 +542,7 @@ class KateVarIndent : public KateNormalIndent class KateScriptIndent : public KateNormalIndent { - Q_OBJECT + TQ_OBJECT public: KateScriptIndent( KateDocument *doc ); @@ -563,7 +563,7 @@ class KateScriptIndent : public KateNormalIndent class ScriptIndentConfigPage : public IndenterConfigPage { - Q_OBJECT + TQ_OBJECT public: ScriptIndentConfigPage ( TQWidget *parent=0, const char *name=0 ); |