From 8eb500c4e81229a9853e2f9bac4f39450083f3d7 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 20 Jul 2023 15:36:09 +0900 Subject: Replace Q_OBJECT with TQ_OBJECT Signed-off-by: Michele Calgaro --- kate/interfaces/document.h | 6 +++--- kate/interfaces/view.h | 2 +- kate/part/katearbitraryhighlight.h | 4 ++-- kate/part/kateautoindent.h | 22 ++++++++++----------- kate/part/katebookmarks.h | 2 +- kate/part/katebuffer.h | 2 +- kate/part/katecodecompletion.h | 6 +++--- kate/part/katecodefoldinghelpers.h | 2 +- kate/part/katedialogs.h | 26 ++++++++++++------------- kate/part/katedocument.h | 2 +- kate/part/katedocumenthelpers.h | 2 +- kate/part/katefiletype.h | 4 ++-- kate/part/katehighlight.h | 4 ++-- kate/part/kateprinter.h | 6 +++--- kate/part/kateschema.h | 14 ++++++------- kate/part/katesearch.h | 4 ++-- kate/part/katespell.h | 2 +- kate/part/katesupercursor.h | 6 +++--- kate/part/katetemplatehandler.h | 2 +- kate/part/kateview.h | 2 +- kate/part/kateviewhelpers.h | 8 ++++---- kate/part/kateviewinternal.h | 2 +- kate/part/test_regression.h | 2 +- kate/plugins/autobookmarker/autobookmarker.h | 6 +++--- kate/plugins/insertfile/insertfileplugin.h | 4 ++-- kate/plugins/isearch/ISearchPlugin.h | 4 ++-- kate/plugins/kdatatool/kate_kdatatool.h | 4 ++-- kate/plugins/wordcompletion/docwordcompletion.h | 6 +++--- 28 files changed, 78 insertions(+), 78 deletions(-) (limited to 'kate') diff --git a/kate/interfaces/document.h b/kate/interfaces/document.h index 381e32fa2..c30a6d320 100644 --- a/kate/interfaces/document.h +++ b/kate/interfaces/document.h @@ -61,7 +61,7 @@ class KATEPARTINTERFACES_EXPORT Cursor : public KTextEditor::Cursor class KATEPARTINTERFACES_EXPORT ConfigPage : public KTextEditor::ConfigPage { - Q_OBJECT + TQ_OBJECT public: ConfigPage ( TQWidget *parent=0, const char *name=0 ) : KTextEditor::ConfigPage (parent, name) { ; }; @@ -79,7 +79,7 @@ class KATEPARTINTERFACES_EXPORT ConfigPage : public KTextEditor::ConfigPage class KATEPARTINTERFACES_EXPORT ActionMenu : public TDEActionMenu { - Q_OBJECT + TQ_OBJECT public: ActionMenu ( const TQString& text, TQObject* parent = 0, const char* name = 0 ) @@ -188,7 +188,7 @@ class KATEPARTINTERFACES_EXPORT Document : public KTextEditor::Document, public public KTextEditor::MarkInterfaceExtension, public KTextEditor::SelectionInterfaceExt { - Q_OBJECT + TQ_OBJECT public: Document (); diff --git a/kate/interfaces/view.h b/kate/interfaces/view.h index 3b2b8a4e1..fcaf43110 100644 --- a/kate/interfaces/view.h +++ b/kate/interfaces/view.h @@ -43,7 +43,7 @@ class KATEPARTINTERFACES_EXPORT View : public KTextEditor::View, public KTextEdi public KTextEditor::PopupMenuInterface, public KTextEditor::ViewCursorInterface, public KTextEditor::CodeCompletionInterface, public KTextEditor::DynWordWrapInterface { - Q_OBJECT + TQ_OBJECT public: /** diff --git a/kate/part/katearbitraryhighlight.h b/kate/part/katearbitraryhighlight.h index 1bea4891f..222c82c2e 100644 --- a/kate/part/katearbitraryhighlight.h +++ b/kate/part/katearbitraryhighlight.h @@ -31,7 +31,7 @@ class KateView; class KateArbitraryHighlightRange : public KateSuperRange, public KateAttribute { - Q_OBJECT + TQ_OBJECT public: KateArbitraryHighlightRange(KateSuperCursor* start, KateSuperCursor* end, TQObject* parent = 0L, const char* name = 0L); @@ -59,7 +59,7 @@ public: */ class KateArbitraryHighlight : public TQObject { - Q_OBJECT + TQ_OBJECT public: KateArbitraryHighlight(KateDocument* parent = 0L, const char* name = 0L); 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 ); diff --git a/kate/part/katebookmarks.h b/kate/part/katebookmarks.h index 3295141f7..05215b66a 100644 --- a/kate/part/katebookmarks.h +++ b/kate/part/katebookmarks.h @@ -37,7 +37,7 @@ class TQMenuData; class KateBookmarks : public TQObject { - Q_OBJECT + TQ_OBJECT public: enum Sorting { Position, Creation }; diff --git a/kate/part/katebuffer.h b/kate/part/katebuffer.h index 2be23cbdb..96765ceba 100644 --- a/kate/part/katebuffer.h +++ b/kate/part/katebuffer.h @@ -340,7 +340,7 @@ class KateBufBlockList */ class KateBuffer : public TQObject { - Q_OBJECT + TQ_OBJECT friend class KateBufBlock; diff --git a/kate/part/katecodecompletion.h b/kate/part/katecodecompletion.h index d2c9ca636..78c68a759 100644 --- a/kate/part/katecodecompletion.h +++ b/kate/part/katecodecompletion.h @@ -46,7 +46,7 @@ class TQVBox; class KateCodeCompletionCommentLabel : public TQLabel { - Q_OBJECT + TQ_OBJECT public: KateCodeCompletionCommentLabel( TQWidget* parent, const TQString& text) : TQLabel( parent, "toolTipTip", @@ -66,7 +66,7 @@ class KateCodeCompletionCommentLabel : public TQLabel class KateCodeCompletion : public TQObject { - Q_OBJECT + TQ_OBJECT friend class KateViewInternal; @@ -116,7 +116,7 @@ class KateCodeCompletion : public TQObject class KateArgHint: public TQFrame { - Q_OBJECT + TQ_OBJECT public: KateArgHint( KateView* =0, const char* =0 ); diff --git a/kate/part/katecodefoldinghelpers.h b/kate/part/katecodefoldinghelpers.h index 3f6d18b27..21faeeb0d 100644 --- a/kate/part/katecodefoldinghelpers.h +++ b/kate/part/katecodefoldinghelpers.h @@ -117,7 +117,7 @@ class KateCodeFoldingTree : public TQObject { friend class KateCodeFoldingNode; - Q_OBJECT + TQ_OBJECT public: KateCodeFoldingTree (KateBuffer *buffer); diff --git a/kate/part/katedialogs.h b/kate/part/katedialogs.h index 0f865fcea..b4b4eb137 100644 --- a/kate/part/katedialogs.h +++ b/kate/part/katedialogs.h @@ -79,7 +79,7 @@ class TQCheckBox; class KateConfigPage : public Kate::ConfigPage { - Q_OBJECT + TQ_OBJECT public: KateConfigPage ( TQWidget *parent=0, const char *name=0 ); @@ -97,7 +97,7 @@ class KateConfigPage : public Kate::ConfigPage class KateGotoLineDialog : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: @@ -112,7 +112,7 @@ class KateGotoLineDialog : public KDialogBase class KateIndentConfigTab : public KateConfigPage { - Q_OBJECT + TQ_OBJECT public: KateIndentConfigTab(TQWidget *parent); @@ -141,7 +141,7 @@ class KateIndentConfigTab : public KateConfigPage class KateSelectConfigTab : public KateConfigPage { - Q_OBJECT + TQ_OBJECT public: KateSelectConfigTab(TQWidget *parent); @@ -164,7 +164,7 @@ class KateSelectConfigTab : public KateConfigPage class KateEditConfigTab : public KateConfigPage { - Q_OBJECT + TQ_OBJECT public: KateEditConfigTab(TQWidget *parent); @@ -189,7 +189,7 @@ class KateEditConfigTab : public KateConfigPage class KateViewDefaultsConfig : public KateConfigPage { - Q_OBJECT + TQ_OBJECT public: KateViewDefaultsConfig( TQWidget *parent ); @@ -217,7 +217,7 @@ class KateViewDefaultsConfig : public KateConfigPage class KateEditKeyConfiguration: public KateConfigPage { - Q_OBJECT + TQ_OBJECT public: KateEditKeyConfiguration( TQWidget* parent, KateDocument* doc ); @@ -240,7 +240,7 @@ class KateEditKeyConfiguration: public KateConfigPage class KateSaveConfigTab : public KateConfigPage { - Q_OBJECT + TQ_OBJECT public: KateSaveConfigTab( TQWidget *parent ); @@ -265,7 +265,7 @@ class KatePartPluginListItem; class KatePartPluginListView : public TDEListView { - Q_OBJECT + TQ_OBJECT friend class KatePartPluginListItem; @@ -282,7 +282,7 @@ class KatePartPluginListView : public TDEListView class TQListViewItem; class KatePartPluginConfigPage : public KateConfigPage { - Q_OBJECT + TQ_OBJECT public: KatePartPluginConfigPage (TQWidget *parent); @@ -307,7 +307,7 @@ class KatePartPluginConfigPage : public KateConfigPage class KateHlConfigPage : public KateConfigPage { - Q_OBJECT + TQ_OBJECT public: KateHlConfigPage (TQWidget *parent, KateDocument *doc); @@ -341,7 +341,7 @@ class KateHlConfigPage : public KateConfigPage class KateHlDownloadDialog: public KDialogBase { - Q_OBJECT + TQ_OBJECT public: KateHlDownloadDialog(TQWidget *parent, const char *name, bool modal); @@ -369,7 +369,7 @@ class TDEProcess; */ class KateModOnHdPrompt : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: enum Status { Reload=1, // 0 is KDialogBase::Cancel diff --git a/kate/part/katedocument.h b/kate/part/katedocument.h index b417c6d7d..c16a86840 100644 --- a/kate/part/katedocument.h +++ b/kate/part/katedocument.h @@ -84,7 +84,7 @@ class KateDocument : public Kate::Document, public DCOPObject { K_DCOP - Q_OBJECT + TQ_OBJECT friend class KateViewInternal; friend class KateRenderer; diff --git a/kate/part/katedocumenthelpers.h b/kate/part/katedocumenthelpers.h index b604d47ce..0609f6841 100644 --- a/kate/part/katedocumenthelpers.h +++ b/kate/part/katedocumenthelpers.h @@ -35,7 +35,7 @@ class KateDocument; */ class KateBrowserExtension : public KParts::BrowserExtension { - Q_OBJECT + TQ_OBJECT public: /** diff --git a/kate/part/katefiletype.h b/kate/part/katefiletype.h index 7a927636b..c85682249 100644 --- a/kate/part/katefiletype.h +++ b/kate/part/katefiletype.h @@ -78,7 +78,7 @@ class KateFileTypeManager class KateFileTypeConfigTab : public KateConfigPage { - Q_OBJECT + TQ_OBJECT public: KateFileTypeConfigTab( TQWidget *parent ); @@ -114,7 +114,7 @@ class KateFileTypeConfigTab : public KateConfigPage class KateViewFileTypeAction : public Kate::ActionMenu { - Q_OBJECT + TQ_OBJECT public: KateViewFileTypeAction(const TQString& text, TQObject* parent = 0, const char* name = 0) diff --git a/kate/part/katehighlight.h b/kate/part/katehighlight.h index 207d9a245..3ab7a7042 100644 --- a/kate/part/katehighlight.h +++ b/kate/part/katehighlight.h @@ -340,7 +340,7 @@ class KateHighlighting class KateHlManager : public TQObject { - Q_OBJECT + TQ_OBJECT private: KateHlManager(); @@ -408,7 +408,7 @@ class KateHlManager : public TQObject class KateViewHighlightAction: public Kate::ActionMenu { - Q_OBJECT + TQ_OBJECT public: KateViewHighlightAction(const TQString& text, TQObject* parent = 0, const char* name = 0) diff --git a/kate/part/kateprinter.h b/kate/part/kateprinter.h index 283c2b58e..b24691102 100644 --- a/kate/part/kateprinter.h +++ b/kate/part/kateprinter.h @@ -50,7 +50,7 @@ class KatePrinter */ class KatePrintTextSettings : public KPrintDialogPage { - Q_OBJECT + TQ_OBJECT public: KatePrintTextSettings( KPrinter *printer, TQWidget *parent=0, const char *name=0 ); ~KatePrintTextSettings(){}; @@ -77,7 +77,7 @@ class KatePrintTextSettings : public KPrintDialogPage class KatePrintHeaderFooter : public KPrintDialogPage { - Q_OBJECT + TQ_OBJECT public: KatePrintHeaderFooter( KPrinter *printer, TQWidget *parent=0, const char *name=0 ); ~KatePrintHeaderFooter(){}; @@ -115,7 +115,7 @@ class KatePrintHeaderFooter : public KPrintDialogPage */ class KatePrintLayout : public KPrintDialogPage { - Q_OBJECT + TQ_OBJECT public: KatePrintLayout( KPrinter *printer, TQWidget *parent=0, const char *name=0 ); ~KatePrintLayout(){}; diff --git a/kate/part/kateschema.h b/kate/part/kateschema.h index cf503be68..55f03ebee 100644 --- a/kate/part/kateschema.h +++ b/kate/part/kateschema.h @@ -92,7 +92,7 @@ class KateSchemaManager class KateViewSchemaAction : public TDEActionMenu { - Q_OBJECT + TQ_OBJECT public: KateViewSchemaAction(const TQString& text, TQObject* parent = 0, const char* name = 0) @@ -127,7 +127,7 @@ class KateViewSchemaAction : public TDEActionMenu */ class KateStyleListView : public TQListView { - Q_OBJECT + TQ_OBJECT friend class KateStyleListItem; @@ -162,7 +162,7 @@ class KateStyleListView : public TQListView class KateSchemaConfigColorTab : public TQWidget { - Q_OBJECT + TQ_OBJECT public: KateSchemaConfigColorTab( TQWidget *parent = 0, const char *name = 0 ); @@ -209,7 +209,7 @@ typedef TQMap FontMap; // ### remove it class KateSchemaConfigFontTab : public TQWidget { - Q_OBJECT + TQ_OBJECT public: KateSchemaConfigFontTab( TQWidget *parent = 0, const char *name = 0 ); @@ -236,7 +236,7 @@ class KateSchemaConfigFontTab : public TQWidget class KateSchemaConfigFontColorTab : public TQWidget { - Q_OBJECT + TQ_OBJECT public: KateSchemaConfigFontColorTab( TQWidget *parent = 0, const char *name = 0 ); @@ -256,7 +256,7 @@ class KateSchemaConfigFontColorTab : public TQWidget class KateSchemaConfigHighlightTab : public TQWidget { - Q_OBJECT + TQ_OBJECT public: KateSchemaConfigHighlightTab( TQWidget *parent = 0, const char *name = 0, KateSchemaConfigFontColorTab *page = 0, uint hl = 0 ); @@ -284,7 +284,7 @@ class KateSchemaConfigHighlightTab : public TQWidget class KateSchemaConfigPage : public KateConfigPage { - Q_OBJECT + TQ_OBJECT public: KateSchemaConfigPage ( TQWidget *parent, class KateDocument *doc=0 ); diff --git a/kate/part/katesearch.h b/kate/part/katesearch.h index 139cd3ff9..7ff798325 100644 --- a/kate/part/katesearch.h +++ b/kate/part/katesearch.h @@ -41,7 +41,7 @@ class TDEActionCollection; class KateSearch : public TQObject { - Q_OBJECT + TQ_OBJECT friend class KateDocument; @@ -167,7 +167,7 @@ class KateSearch : public TQObject */ class KateReplacePrompt : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: /** diff --git a/kate/part/katespell.h b/kate/part/katespell.h index 6119d0ea4..6a5e3ad52 100644 --- a/kate/part/katespell.h +++ b/kate/part/katespell.h @@ -32,7 +32,7 @@ class KSpell; class KateSpell : public TQObject { - Q_OBJECT + TQ_OBJECT public: KateSpell( KateView* ); diff --git a/kate/part/katesupercursor.h b/kate/part/katesupercursor.h index 74baf07df..270227925 100644 --- a/kate/part/katesupercursor.h +++ b/kate/part/katesupercursor.h @@ -44,7 +44,7 @@ class KateView; **/ class KateSuperCursor : public TQObject, public KateDocCursor, public Kate::Cursor { - Q_OBJECT + TQ_OBJECT public: /** @@ -169,7 +169,7 @@ class KateSuperRange : public TQObject, public KateRange { friend class KateSuperRangeList; - Q_OBJECT + TQ_OBJECT public: /// Determine how the range reacts to characters inserted immediately outside the range. @@ -338,7 +338,7 @@ protected: class KateSuperRangeList : public TQObject, public TQPtrList { - Q_OBJECT + TQ_OBJECT public: /** diff --git a/kate/part/katetemplatehandler.h b/kate/part/katetemplatehandler.h index d7d56e074..f50023f46 100644 --- a/kate/part/katetemplatehandler.h +++ b/kate/part/katetemplatehandler.h @@ -29,7 +29,7 @@ class KateDocument; class KateTemplateHandler: public TQObject, public KateKeyInterceptorFunctor { - Q_OBJECT + TQ_OBJECT public: KateTemplateHandler(KateDocument *doc,uint line,uint column, const TQString &templateString, const TQMap &initialValues); virtual ~KateTemplateHandler(); diff --git a/kate/part/kateview.h b/kate/part/kateview.h index 0a00ab1fc..1e113618e 100644 --- a/kate/part/kateview.h +++ b/kate/part/kateview.h @@ -62,7 +62,7 @@ class KateView : public Kate::View, public KTextEditor::SelectionInterfaceExt, public KTextEditor::BlockSelectionInterface { - Q_OBJECT + TQ_OBJECT friend class KateViewInternal; friend class KateIconBorder; diff --git a/kate/part/kateviewhelpers.h b/kate/part/kateviewhelpers.h index ecaec3303..1e162af18 100644 --- a/kate/part/kateviewhelpers.h +++ b/kate/part/kateviewhelpers.h @@ -47,7 +47,7 @@ namespace Kate { */ class KateScrollBar : public TQScrollBar { - Q_OBJECT + TQ_OBJECT public: KateScrollBar(Orientation orientation, class KateViewInternal *parent, const char* name = 0L); @@ -94,7 +94,7 @@ class KateScrollBar : public TQScrollBar class KateCmdLine : public KLineEdit { - Q_OBJECT + TQ_OBJECT public: KateCmdLine (KateView *view); @@ -121,7 +121,7 @@ class KateCmdLine : public KLineEdit class KateIconBorder : public TQWidget { - Q_OBJECT + TQ_OBJECT public: KateIconBorder( KateViewInternal* internalView, TQWidget *parent ); @@ -184,7 +184,7 @@ class KateIconBorder : public TQWidget class KateViewEncodingAction : public TDEActionMenu { - Q_OBJECT + TQ_OBJECT public: KateViewEncodingAction(KateDocument *_doc, KateView *_view, const TQString& text, TQObject* parent = 0, const char* name = 0); diff --git a/kate/part/kateviewinternal.h b/kate/part/kateviewinternal.h index 0d9aa7c55..77fb81e7a 100644 --- a/kate/part/kateviewinternal.h +++ b/kate/part/kateviewinternal.h @@ -52,7 +52,7 @@ enum Bias class KateViewInternal : public TQWidget { - Q_OBJECT + TQ_OBJECT friend class KateView; friend class KateIconBorder; diff --git a/kate/part/test_regression.h b/kate/part/test_regression.h index 2128ce25d..7ef1b9ee1 100644 --- a/kate/part/test_regression.h +++ b/kate/part/test_regression.h @@ -162,7 +162,7 @@ class OutputFunction : public KJS::ObjectImp */ class RegressionTest : public TQObject { - Q_OBJECT + TQ_OBJECT public: RegressionTest(KateDocument *part, TDEConfig *baseConfig, diff --git a/kate/plugins/autobookmarker/autobookmarker.h b/kate/plugins/autobookmarker/autobookmarker.h index 9687d8ceb..1f6d1daeb 100644 --- a/kate/plugins/autobookmarker/autobookmarker.h +++ b/kate/plugins/autobookmarker/autobookmarker.h @@ -50,7 +50,7 @@ class AutoBookmarker : public KTextEditor::Plugin, public KTextEditor::PluginViewInterface, public KTextEditor::ConfigInterfaceExtension { - Q_OBJECT + TQ_OBJECT public: AutoBookmarker( TQObject *parent = 0, const char* name = 0, @@ -96,7 +96,7 @@ class ABGlobal class AutoBookmarkerConfigPage : public KTextEditor::ConfigPage { - Q_OBJECT + TQ_OBJECT public: AutoBookmarkerConfigPage( TQWidget *parent, const char *name ); virtual ~AutoBookmarkerConfigPage() {}; @@ -118,7 +118,7 @@ class AutoBookmarkerConfigPage : public KTextEditor::ConfigPage class AutoBookmarkerEntEditor : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: AutoBookmarkerEntEditor( TQWidget *parent, AutoBookmarkEnt *e ); ~AutoBookmarkerEntEditor(){}; diff --git a/kate/plugins/insertfile/insertfileplugin.h b/kate/plugins/insertfile/insertfileplugin.h index da08a02c7..0f7bfc2c9 100644 --- a/kate/plugins/insertfile/insertfileplugin.h +++ b/kate/plugins/insertfile/insertfileplugin.h @@ -32,7 +32,7 @@ class InsertFilePlugin : public KTextEditor::Plugin, public KTextEditor::PluginViewInterface { - Q_OBJECT + TQ_OBJECT public: InsertFilePlugin( TQObject *parent = 0, @@ -50,7 +50,7 @@ class InsertFilePlugin : public KTextEditor::Plugin, public KTextEditor::PluginV class InsertFilePluginView : public TQObject, public KXMLGUIClient { - Q_OBJECT + TQ_OBJECT public: InsertFilePluginView( KTextEditor::View *view, const char *name=0 ); ~InsertFilePluginView() {}; diff --git a/kate/plugins/isearch/ISearchPlugin.h b/kate/plugins/isearch/ISearchPlugin.h index b11b2a8b6..e1893c516 100644 --- a/kate/plugins/isearch/ISearchPlugin.h +++ b/kate/plugins/isearch/ISearchPlugin.h @@ -34,7 +34,7 @@ class TQLabel; class ISearchPlugin : public KTextEditor::Plugin, public KTextEditor::PluginViewInterface { - Q_OBJECT + TQ_OBJECT public: ISearchPlugin( TQObject *parent = 0, const char* name = 0, const TQStringList &args = TQStringList() ); @@ -49,7 +49,7 @@ private: class ISearchPluginView : public TQObject, public KXMLGUIClient { - Q_OBJECT + TQ_OBJECT public: ISearchPluginView( KTextEditor::View *view ); diff --git a/kate/plugins/kdatatool/kate_kdatatool.h b/kate/plugins/kdatatool/kate_kdatatool.h index a217c6f27..b3ef86767 100644 --- a/kate/plugins/kdatatool/kate_kdatatool.h +++ b/kate/plugins/kdatatool/kate_kdatatool.h @@ -36,7 +36,7 @@ class View; class KDataToolPlugin : public KTextEditor::Plugin, public KTextEditor::PluginViewInterface { - Q_OBJECT + TQ_OBJECT public: KDataToolPlugin( TQObject *parent = 0, const char* name = 0, const TQStringList &args = TQStringList() ); @@ -51,7 +51,7 @@ public: class KDataToolPluginView : public TQObject, public KXMLGUIClient { - Q_OBJECT + TQ_OBJECT public: KDataToolPluginView( KTextEditor::View *view ); diff --git a/kate/plugins/wordcompletion/docwordcompletion.h b/kate/plugins/wordcompletion/docwordcompletion.h index f22f99d4e..e2ff3cfb2 100644 --- a/kate/plugins/wordcompletion/docwordcompletion.h +++ b/kate/plugins/wordcompletion/docwordcompletion.h @@ -44,7 +44,7 @@ class DocWordCompletionPlugin , public KTextEditor::PluginViewInterface , public KTextEditor::ConfigInterfaceExtension { - Q_OBJECT + TQ_OBJECT public: DocWordCompletionPlugin( TQObject *parent = 0, @@ -81,7 +81,7 @@ class DocWordCompletionPlugin class DocWordCompletionPluginView : public TQObject, public KXMLGUIClient { - Q_OBJECT + TQ_OBJECT public: DocWordCompletionPluginView( uint treshold=3, bool autopopup=true, KTextEditor::View *view=0, @@ -113,7 +113,7 @@ class DocWordCompletionPluginView class DocWordCompletionConfigPage : public KTextEditor::ConfigPage { - Q_OBJECT + TQ_OBJECT public: DocWordCompletionConfigPage( DocWordCompletionPlugin *completion, TQWidget *parent, const char *name ); virtual ~DocWordCompletionConfigPage() {}; -- cgit v1.2.1