diff options
author | Michele Calgaro <[email protected]> | 2023-07-20 12:56:44 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-24 11:15:30 +0900 |
commit | e6270284cf06b220a9bef9267561aac7b9d485a9 (patch) | |
tree | 10b49423997ca47f039425df11d4d3deee1cc73a /src/modules/editor/scripteditor.h | |
parent | ef786e3a1a322e0584654503d288e3630744e998 (diff) | |
download | kvirc-e6270284cf06b220a9bef9267561aac7b9d485a9.tar.gz kvirc-e6270284cf06b220a9bef9267561aac7b9d485a9.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 6df27473e52921dbfb268945c748639f1cf806e4)
Diffstat (limited to 'src/modules/editor/scripteditor.h')
-rw-r--r-- | src/modules/editor/scripteditor.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/editor/scripteditor.h b/src/modules/editor/scripteditor.h index 50602ecf..e7718e07 100644 --- a/src/modules/editor/scripteditor.h +++ b/src/modules/editor/scripteditor.h @@ -44,7 +44,7 @@ typedef KviPointerList<int> ColumnList; class KviCompletionBox: public KviTalListBox { - Q_OBJECT + TQ_OBJECT public: KviCompletionBox(TQWidget * parent = 0); @@ -57,7 +57,7 @@ protected: class KviScriptEditorWidget : public KviTalTextEdit { - Q_OBJECT + TQ_OBJECT TQ_PROPERTY(bool contextSensitiveHelp READ contextSensitiveHelp) public: @@ -110,7 +110,7 @@ public: class KviScriptEditorWidgetColorOptions : public TQDialog { - Q_OBJECT + TQ_OBJECT public: KviScriptEditorWidgetColorOptions(TQWidget * pParent); @@ -128,7 +128,7 @@ class TQTimer; class KviScriptEditorImplementation : public KviScriptEditor { - Q_OBJECT + TQ_OBJECT public: KviScriptEditorImplementation(TQWidget * par); @@ -173,7 +173,7 @@ signals: class KviScriptEditorReplaceDialog: public TQDialog { - Q_OBJECT + TQ_OBJECT public: KviScriptEditorReplaceDialog( TQWidget* parent = 0, const char* name = 0); |