diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:07:57 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-21 17:51:37 +0900 |
commit | f3d43273fab6185fb07a20829ba537c650261a16 (patch) | |
tree | 1c587bc4e2af242a54f79334ec76e9119127addc /parts | |
parent | 4ab396a40eb06d14b10d8a35a4ca2166a677804f (diff) | |
download | tdevelop-f3d43273fab6185fb07a20829ba537c650261a16.tar.gz tdevelop-f3d43273fab6185fb07a20829ba537c650261a16.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 9c40420b261ea30555cabc299829028ee345b9e5)
Diffstat (limited to 'parts')
139 files changed, 154 insertions, 154 deletions
diff --git a/parts/abbrev/abbrevconfigwidget.h b/parts/abbrev/abbrevconfigwidget.h index 4fdeb8a9..156c85ff 100644 --- a/parts/abbrev/abbrevconfigwidget.h +++ b/parts/abbrev/abbrevconfigwidget.h @@ -22,7 +22,7 @@ class AbbrevConfigWidget : public AbbrevConfigWidgetBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/abbrev/abbrevpart.h b/parts/abbrev/abbrevpart.h index 2b602088..afc252a4 100644 --- a/parts/abbrev/abbrevpart.h +++ b/parts/abbrev/abbrevpart.h @@ -62,7 +62,7 @@ private: class AbbrevPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/abbrev/addtemplatedlg.h b/parts/abbrev/addtemplatedlg.h index c8912c18..71e72ac5 100644 --- a/parts/abbrev/addtemplatedlg.h +++ b/parts/abbrev/addtemplatedlg.h @@ -25,7 +25,7 @@ class AddTemplateDialog: public AddTemplateDialogBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/abbrev/cpp_keywords b/parts/abbrev/cpp_keywords index e84d0cf1..3badf3ba 100644 --- a/parts/abbrev/cpp_keywords +++ b/parts/abbrev/cpp_keywords @@ -1,7 +1,7 @@ K_DCOP k_dcop k_dcop_Q_SIGNALS -Q_OBJECT +TQ_OBJECT Q_SIGNALS Q_SLOTS emit diff --git a/parts/appwizard/appwizarddlg.h b/parts/appwizard/appwizarddlg.h index bae75531..06fc723c 100644 --- a/parts/appwizard/appwizarddlg.h +++ b/parts/appwizard/appwizarddlg.h @@ -120,7 +120,7 @@ struct AppWizardFileTemplate class AppWizardDialog : public AppWizardDialogBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/appwizard/appwizardpart.h b/parts/appwizard/appwizardpart.h index 59280631..a68a2cab 100644 --- a/parts/appwizard/appwizardpart.h +++ b/parts/appwizard/appwizardpart.h @@ -23,7 +23,7 @@ class AppWizardDialog; class AppWizardPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/appwizard/common/scons/admin/kde.py b/parts/appwizard/common/scons/admin/kde.py index c67e0f41..2ed199f3 100644 --- a/parts/appwizard/common/scons/admin/kde.py +++ b/parts/appwizard/common/scons/admin/kde.py @@ -264,8 +264,8 @@ ie: """+BOLD+"""scons configure libdir=/usr/local/lib qtincludes=/usr/include/qt objBuilder = getattr(env, self.objBuilderName) # some regular expressions: - # Q_OBJECT detection - q_object_search = re.compile(r'[^A-Za-z0-9]Q_OBJECT[^A-Za-z0-9]') + # TQ_OBJECT detection + q_object_search = re.compile(r'[^A-Za-z0-9]TQ_OBJECT[^A-Za-z0-9]') # The following is kind of hacky to get builders working properly (FIXME) ?? objBuilderEnv = objBuilder.env @@ -323,7 +323,7 @@ ie: """+BOLD+"""scons configure libdir=/usr/local/lib qtincludes=/usr/include/qt if not h and qtdebug: print("scons: qt: no header for '%s'." % (str(cpp))) if h and q_object_search.search(h_contents): - # h file with the Q_OBJECT macro found -> add .moc or _moc.cpp file + # h file with the TQ_OBJECT macro found -> add .moc or _moc.cpp file moc_cpp = None if 'NOMOCSCAN' in env: @@ -338,10 +338,10 @@ ie: """+BOLD+"""scons configure libdir=/usr/local/lib qtincludes=/usr/include/qt moc_o = objBuilder(moc_cpp) out_sources.append(moc_o) if qtdebug: - print("scons: qt: found Q_OBJECT macro in '%s', moc'ing to '%s'" % (str(h), str(moc_cpp[0]))) + print("scons: qt: found TQ_OBJECT macro in '%s', moc'ing to '%s'" % (str(h), str(moc_cpp[0]))) if cpp and q_object_search.search(cpp_contents): - print("error, bksys cannot handle cpp files with Q_OBJECT classes") + print("error, bksys cannot handle cpp files with TQ_OBJECT classes") print("if you are sure this is a feature worth the effort, ") print("report this to the authors tnagyemail-mail yahoo.fr") diff --git a/parts/appwizard/filepropspage.h b/parts/appwizard/filepropspage.h index 2539fd79..c75aa1b1 100644 --- a/parts/appwizard/filepropspage.h +++ b/parts/appwizard/filepropspage.h @@ -19,7 +19,7 @@ class ClassFileProp { class FilePropsPage : public FilePropsPageBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/appwizard/importdlg.h b/parts/appwizard/importdlg.h index 5b334668..3ab2e71a 100644 --- a/parts/appwizard/importdlg.h +++ b/parts/appwizard/importdlg.h @@ -27,7 +27,7 @@ struct InfrastructureCmd{ class ImportDialog : public ImportDialogBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/astyle/astyle_part.h b/parts/astyle/astyle_part.h index f5a79485..05f94bb7 100644 --- a/parts/astyle/astyle_part.h +++ b/parts/astyle/astyle_part.h @@ -22,7 +22,7 @@ class ConfigWidgetProxy; class AStylePart : public KDevSourceFormatter { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/astyle/astyle_widget.h b/parts/astyle/astyle_widget.h index 91963e54..5ebb70b0 100644 --- a/parts/astyle/astyle_widget.h +++ b/parts/astyle/astyle_widget.h @@ -9,7 +9,7 @@ class KDevPart; class AStyleWidget : public AStyleConfig { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/bookmarks/bookmarks_part.h b/parts/bookmarks/bookmarks_part.h index ae74bf63..b0b58b6b 100644 --- a/parts/bookmarks/bookmarks_part.h +++ b/parts/bookmarks/bookmarks_part.h @@ -40,7 +40,7 @@ class TQDomElement; class BookmarksPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/bookmarks/bookmarks_settings.h b/parts/bookmarks/bookmarks_settings.h index a28f424e..278fa637 100644 --- a/parts/bookmarks/bookmarks_settings.h +++ b/parts/bookmarks/bookmarks_settings.h @@ -18,7 +18,7 @@ class BookmarksPart; class BookmarkSettings : public BookmarkSettingsBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/bookmarks/bookmarks_widget.h b/parts/bookmarks/bookmarks_widget.h index 79df9593..3246cec0 100644 --- a/parts/bookmarks/bookmarks_widget.h +++ b/parts/bookmarks/bookmarks_widget.h @@ -28,7 +28,7 @@ class BookmarksConfig; class BookmarksWidget : public TDEListView, public TQToolTip { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/classview/classtooldlg.h b/parts/classview/classtooldlg.h index d143e66e..958cb9b5 100644 --- a/parts/classview/classtooldlg.h +++ b/parts/classview/classtooldlg.h @@ -29,7 +29,7 @@ class ParsedClass; class ClassToolDialog : public TQWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/classview/classtoolwidget.h b/parts/classview/classtoolwidget.h index 8fd6b974..cfe2d603 100644 --- a/parts/classview/classtoolwidget.h +++ b/parts/classview/classtoolwidget.h @@ -19,7 +19,7 @@ class ClassToolWidget : public ClassTreeBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/classview/classtreebase.h b/parts/classview/classtreebase.h index 413f288b..a73aede7 100644 --- a/parts/classview/classtreebase.h +++ b/parts/classview/classtreebase.h @@ -29,7 +29,7 @@ class TDEPopupMenu; class ClassTreeBase : public TDEListView { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/classview/classviewpart.h b/parts/classview/classviewpart.h index 16e18def..19342916 100644 --- a/parts/classview/classviewpart.h +++ b/parts/classview/classviewpart.h @@ -54,7 +54,7 @@ class Navigator; class HierarchyDialog; class ClassViewPart : public Extensions::KDevCodeBrowserFrontend { - Q_OBJECT + TQ_OBJECT public: ClassViewPart(TQObject *parent, const char *name, const TQStringList &); diff --git a/parts/classview/classviewwidget.h b/parts/classview/classviewwidget.h index d74448f5..bdbd69f4 100644 --- a/parts/classview/classviewwidget.h +++ b/parts/classview/classviewwidget.h @@ -45,7 +45,7 @@ class TDEToggleAction; class ClassViewWidget : public TDEListView, public TQToolTip { - Q_OBJECT + TQ_OBJECT public: enum ViewMode diff --git a/parts/classview/digraphview.h b/parts/classview/digraphview.h index a72aa941..ed7fcc2e 100644 --- a/parts/classview/digraphview.h +++ b/parts/classview/digraphview.h @@ -23,7 +23,7 @@ class DigraphEdge; class DigraphView : public TQScrollView { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/classview/hierarchydlg.h b/parts/classview/hierarchydlg.h index 1c41a8f0..486b9bcb 100644 --- a/parts/classview/hierarchydlg.h +++ b/parts/classview/hierarchydlg.h @@ -25,7 +25,7 @@ class TQListViewItem; class HierarchyDialog : public TQDialog { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/classview/navigator.h b/parts/classview/navigator.h index ed0c3ffb..66442ea5 100644 --- a/parts/classview/navigator.h +++ b/parts/classview/navigator.h @@ -38,7 +38,7 @@ TextPaintItem highlightFunctionName( TQString function, int type, TextPaintStyle class Navigator : public TQObject { -Q_OBJECT +TQ_OBJECT public: enum NavigationState { GoToDefinitions, GoToDeclarations }; diff --git a/parts/ctags2/ctags2_createtagfile.h b/parts/ctags2/ctags2_createtagfile.h index f0138bbe..886332e7 100644 --- a/parts/ctags2/ctags2_createtagfile.h +++ b/parts/ctags2/ctags2_createtagfile.h @@ -18,7 +18,7 @@ class CreateTagFile : public CTags2CreateTagFileBase { -Q_OBJECT +TQ_OBJECT public: diff --git a/parts/ctags2/ctags2_part.h b/parts/ctags2/ctags2_part.h index 5de52c37..2a60def7 100644 --- a/parts/ctags2/ctags2_part.h +++ b/parts/ctags2/ctags2_part.h @@ -28,7 +28,7 @@ class KDialogBase; class CTags2Part : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/ctags2/ctags2_selecttagfile.h b/parts/ctags2/ctags2_selecttagfile.h index 046e72c3..4593ca90 100644 --- a/parts/ctags2/ctags2_selecttagfile.h +++ b/parts/ctags2/ctags2_selecttagfile.h @@ -15,7 +15,7 @@ #include "ctags2_selecttagfilebase.h" class SelectTagFile : public SelectTagFileBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/ctags2/ctags2_settingswidget.h b/parts/ctags2/ctags2_settingswidget.h index 6eba2b44..90c7a095 100644 --- a/parts/ctags2/ctags2_settingswidget.h +++ b/parts/ctags2/ctags2_settingswidget.h @@ -39,7 +39,7 @@ private: class CTags2SettingsWidget : public CTags2SettingsWidgetBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/ctags2/ctags2_widget.h b/parts/ctags2/ctags2_widget.h index d67ec415..7f1d1bd5 100644 --- a/parts/ctags2/ctags2_widget.h +++ b/parts/ctags2/ctags2_widget.h @@ -21,7 +21,7 @@ class TQListViewItem; class CTags2Widget : public CTags2WidgetBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/diff/diffdlg.h b/parts/diff/diffdlg.h index ee15011a..87c37211 100644 --- a/parts/diff/diffdlg.h +++ b/parts/diff/diffdlg.h @@ -19,7 +19,7 @@ class DiffWidget; class DiffDlg : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/diff/diffpart.h b/parts/diff/diffpart.h index 6fe89efe..3bccf1a1 100644 --- a/parts/diff/diffpart.h +++ b/parts/diff/diffpart.h @@ -26,7 +26,7 @@ class TQCString; class DiffPart : public KDevDiffFrontend { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/diff/diffwidget.h b/parts/diff/diffwidget.h index b021e516..43b9f90f 100644 --- a/parts/diff/diffwidget.h +++ b/parts/diff/diffwidget.h @@ -32,7 +32,7 @@ namespace KParts { // Helper class that displays a modified RMB popup menu class KDiffTextEdit: public TQTextEdit { - Q_OBJECT + TQ_OBJECT public: KDiffTextEdit( TQWidget* parent = 0, const char* name = 0 ); @@ -61,7 +61,7 @@ private: class DiffWidget : public TQWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/distpart/distpart_part.h b/parts/distpart/distpart_part.h index aa019c4d..fb71202f 100644 --- a/parts/distpart/distpart_part.h +++ b/parts/distpart/distpart_part.h @@ -33,7 +33,7 @@ class DistpartDialog; class KDialogBase; class DistpartPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/distpart/distpart_widget.h b/parts/distpart/distpart_widget.h index 7a684a5a..27877167 100644 --- a/parts/distpart/distpart_widget.h +++ b/parts/distpart/distpart_widget.h @@ -45,7 +45,7 @@ class ReadOnlyPart; class DistpartDialog : public distpart_ui { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/documentation/KDevDocumentationIface.h b/parts/documentation/KDevDocumentationIface.h index c55143e7..733bc7bf 100644 --- a/parts/documentation/KDevDocumentationIface.h +++ b/parts/documentation/KDevDocumentationIface.h @@ -26,7 +26,7 @@ class DocumentationPart; class KDevDocumentationIface : public TQObject, public DCOPObject { - Q_OBJECT + TQ_OBJECT // K_DCOP public: diff --git a/parts/documentation/addcatalogdlg.h b/parts/documentation/addcatalogdlg.h index b074ecb6..461bf56d 100644 --- a/parts/documentation/addcatalogdlg.h +++ b/parts/documentation/addcatalogdlg.h @@ -28,7 +28,7 @@ class DocumentationPlugin; class AddCatalogDlg: public AddCatalogDlgBase { - Q_OBJECT + TQ_OBJECT public: AddCatalogDlg( TQValueList<DocumentationPlugin*> const & plugins, TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0); diff --git a/parts/documentation/bookmarkview.h b/parts/documentation/bookmarkview.h index 36283e0c..cdd102a0 100644 --- a/parts/documentation/bookmarkview.h +++ b/parts/documentation/bookmarkview.h @@ -49,7 +49,7 @@ private: class BookmarkView : public TQWidget { - Q_OBJECT + TQ_OBJECT public: BookmarkView(DocumentationWidget *parent = 0, const char *name = 0); diff --git a/parts/documentation/contentsview.h b/parts/documentation/contentsview.h index e170b7dc..a638a5c9 100644 --- a/parts/documentation/contentsview.h +++ b/parts/documentation/contentsview.h @@ -29,7 +29,7 @@ class TDEListView; class ContentsView : public TQWidget { - Q_OBJECT + TQ_OBJECT public: ContentsView(DocumentationWidget *parent, const char *name = 0); diff --git a/parts/documentation/docconfiglistview.h b/parts/documentation/docconfiglistview.h index 811c49b1..13db2301 100644 --- a/parts/documentation/docconfiglistview.h +++ b/parts/documentation/docconfiglistview.h @@ -24,7 +24,7 @@ class DocConfigListView : public TDEListView { - Q_OBJECT + TQ_OBJECT public: DocConfigListView(TQWidget *parent = 0, const char *name = 0); diff --git a/parts/documentation/docglobalconfigwidget.h b/parts/documentation/docglobalconfigwidget.h index 8fee856c..48d33817 100644 --- a/parts/documentation/docglobalconfigwidget.h +++ b/parts/documentation/docglobalconfigwidget.h @@ -31,7 +31,7 @@ class TDEListView; class DocGlobalConfigWidget : public DocGlobalConfigWidgetBase { - Q_OBJECT + TQ_OBJECT public: DocGlobalConfigWidget(DocumentationPart *part, DocumentationWidget *widget, diff --git a/parts/documentation/docprojectconfigwidget.h b/parts/documentation/docprojectconfigwidget.h index 0b7b4452..a35a0795 100644 --- a/parts/documentation/docprojectconfigwidget.h +++ b/parts/documentation/docprojectconfigwidget.h @@ -26,7 +26,7 @@ class DocumentationPart; class DocumentationPlugin; class DocProjectConfigWidget: public DocProjectConfigWidgetBase { - Q_OBJECT + TQ_OBJECT public: DocProjectConfigWidget(DocumentationPart *part, TQWidget *parent = 0, const char *name = 0); diff --git a/parts/documentation/documentation_part.h b/parts/documentation/documentation_part.h index 02564a3f..8385f25e 100644 --- a/parts/documentation/documentation_part.h +++ b/parts/documentation/documentation_part.h @@ -41,7 +41,7 @@ class TQPopupMenu; */ class DocumentationPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: enum ContextFeature { Finder, IndexLookup, FullTextSearch, GotoMan, GotoInfo }; diff --git a/parts/documentation/documentation_widget.h b/parts/documentation/documentation_widget.h index a813b393..0086163f 100644 --- a/parts/documentation/documentation_widget.h +++ b/parts/documentation/documentation_widget.h @@ -36,7 +36,7 @@ class TDEListView; class DocumentationWidget : public TQWidget { - Q_OBJECT + TQ_OBJECT public: DocumentationWidget(DocumentationPart *part); diff --git a/parts/documentation/editcatalogdlg.h b/parts/documentation/editcatalogdlg.h index 4cd248ee..5aaa6eed 100644 --- a/parts/documentation/editcatalogdlg.h +++ b/parts/documentation/editcatalogdlg.h @@ -26,7 +26,7 @@ class DocumentationPlugin; class EditCatalogDlg : public EditCatalogBase { - Q_OBJECT + TQ_OBJECT public: EditCatalogDlg(DocumentationPlugin *plugin, diff --git a/parts/documentation/find_documentation.h b/parts/documentation/find_documentation.h index b1fb6f05..b93f964f 100644 --- a/parts/documentation/find_documentation.h +++ b/parts/documentation/find_documentation.h @@ -32,7 +32,7 @@ class TDEProcess; class FindDocumentation : public FindDocumentationBase { -Q_OBJECT +TQ_OBJECT public: FindDocumentation(DocumentationWidget* parent, const char* name = 0); diff --git a/parts/documentation/find_documentation_options.h b/parts/documentation/find_documentation_options.h index ab1a3cc9..d12e748b 100644 --- a/parts/documentation/find_documentation_options.h +++ b/parts/documentation/find_documentation_options.h @@ -28,7 +28,7 @@ class TDEConfig; class FindDocumentationOptions : public FindDocumentationOptionsBase { -Q_OBJECT +TQ_OBJECT public: FindDocumentationOptions(TQWidget* parent = 0, const char* name = 0, bool modal = FALSE); diff --git a/parts/documentation/indexview.h b/parts/documentation/indexview.h index 5538f870..d76ee504 100644 --- a/parts/documentation/indexview.h +++ b/parts/documentation/indexview.h @@ -30,7 +30,7 @@ class FindDocumentation; class IndexView : public TQWidget { - Q_OBJECT + TQ_OBJECT public: IndexView(DocumentationWidget *parent = 0, const char *name = 0); diff --git a/parts/documentation/interfaces/kdevdocumentationplugin.h b/parts/documentation/interfaces/kdevdocumentationplugin.h index ba9d1948..0d8256f4 100644 --- a/parts/documentation/interfaces/kdevdocumentationplugin.h +++ b/parts/documentation/interfaces/kdevdocumentationplugin.h @@ -216,7 +216,7 @@ a list of URL's for the full text search tool. */ class DocumentationPlugin: public TQObject { - Q_OBJECT + TQ_OBJECT public: /**Capability of documentation plugin.*/ @@ -390,7 +390,7 @@ friend class DocumentationCatalogItem; Represents functionality to display project documentation catalog and index in documentation browser. */ class ProjectDocumentationPlugin: public TQObject { - Q_OBJECT + TQ_OBJECT public: ProjectDocumentationPlugin(DocumentationPlugin *docPlugin, DocumentationPlugin::ProjectDocType type); diff --git a/parts/documentation/plugins/chm/docchmplugin.h b/parts/documentation/plugins/chm/docchmplugin.h index 5ac7d120..683a586f 100644 --- a/parts/documentation/plugins/chm/docchmplugin.h +++ b/parts/documentation/plugins/chm/docchmplugin.h @@ -24,7 +24,7 @@ class DocCHMPlugin :public DocumentationPlugin { - Q_OBJECT + TQ_OBJECT public: DocCHMPlugin(TQObject* parent, const char* name, TQStringList args = TQStringList()); diff --git a/parts/documentation/plugins/devhelp/docdevhelpplugin.h b/parts/documentation/plugins/devhelp/docdevhelpplugin.h index 19ff8a75..ad7c9a41 100644 --- a/parts/documentation/plugins/devhelp/docdevhelpplugin.h +++ b/parts/documentation/plugins/devhelp/docdevhelpplugin.h @@ -27,7 +27,7 @@ class DocDevHelpPlugin: public DocumentationPlugin { - Q_OBJECT + TQ_OBJECT public: DocDevHelpPlugin(TQObject* parent, const char* name, const TQStringList args = TQStringList()); diff --git a/parts/documentation/plugins/doxygen/docdoxygenplugin.h b/parts/documentation/plugins/doxygen/docdoxygenplugin.h index afa57cf6..36d6a61b 100644 --- a/parts/documentation/plugins/doxygen/docdoxygenplugin.h +++ b/parts/documentation/plugins/doxygen/docdoxygenplugin.h @@ -27,7 +27,7 @@ class TQDomElement; class DocDoxygenPlugin: public DocumentationPlugin { - Q_OBJECT + TQ_OBJECT public: DocDoxygenPlugin(TQObject* parent, const char* name, const TQStringList args = TQStringList()); diff --git a/parts/documentation/plugins/kdevtoc/dockdevtocplugin.h b/parts/documentation/plugins/kdevtoc/dockdevtocplugin.h index b6b5c037..5d090cec 100644 --- a/parts/documentation/plugins/kdevtoc/dockdevtocplugin.h +++ b/parts/documentation/plugins/kdevtoc/dockdevtocplugin.h @@ -26,7 +26,7 @@ class DocKDevTOCPlugin : public DocumentationPlugin { - Q_OBJECT + TQ_OBJECT public: DocKDevTOCPlugin(TQObject* parent, const char* name, const TQStringList args = TQStringList()); diff --git a/parts/documentation/plugins/qt/docqtplugin.h b/parts/documentation/plugins/qt/docqtplugin.h index 31b14b9b..10b60274 100644 --- a/parts/documentation/plugins/qt/docqtplugin.h +++ b/parts/documentation/plugins/qt/docqtplugin.h @@ -27,7 +27,7 @@ class TDEConfig; class DocQtPlugin : public DocumentationPlugin { - Q_OBJECT + TQ_OBJECT public: DocQtPlugin(TQObject* parent, const char* name, const TQStringList args = TQStringList()); diff --git a/parts/documentation/protocols/chm/kchmpart.h b/parts/documentation/protocols/chm/kchmpart.h index 9d1812b1..12c24990 100644 --- a/parts/documentation/protocols/chm/kchmpart.h +++ b/parts/documentation/protocols/chm/kchmpart.h @@ -32,7 +32,7 @@ class TDEAboutData; class KChmPartFactory: public KParts::Factory { - Q_OBJECT + TQ_OBJECT public: KChmPartFactory( TQObject *parent = 0, const char *name = 0 ); @@ -54,7 +54,7 @@ class KChmPartFactory: public KParts::Factory class KChmPart : public KDevHTMLPart { - Q_OBJECT + TQ_OBJECT public: KChmPart( TQWidget *, const char * = 0 ); diff --git a/parts/documentation/searchview.h b/parts/documentation/searchview.h index 7c3602c1..90fd5442 100644 --- a/parts/documentation/searchview.h +++ b/parts/documentation/searchview.h @@ -32,7 +32,7 @@ class TQListViewItem; class SearchView: public TQWidget { - Q_OBJECT + TQ_OBJECT public: SearchView(DocumentationPart *part, TQWidget *parent = 0, const char *name = 0); diff --git a/parts/documentation/selecttopic.h b/parts/documentation/selecttopic.h index 6ca5ad8b..daa6e4f1 100644 --- a/parts/documentation/selecttopic.h +++ b/parts/documentation/selecttopic.h @@ -25,7 +25,7 @@ #include "kdevdocumentationplugin.h" class SelectTopic: public SelectTopicBase{ -Q_OBJECT +TQ_OBJECT public: SelectTopic(IndexItem::List &urls, TQWidget *parent = 0, const char *name = 0); diff --git a/parts/documentation/tools/htdig/htdigindex.h b/parts/documentation/tools/htdig/htdigindex.h index 667112a3..a5ae5225 100644 --- a/parts/documentation/tools/htdig/htdigindex.h +++ b/parts/documentation/tools/htdig/htdigindex.h @@ -24,7 +24,7 @@ class KProgress; class ProgressDialog : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: ProgressDialog(bool index, TQWidget *parent=0, const char *name=0); diff --git a/parts/doxygen/doxygenconfigwidget.h b/parts/doxygen/doxygenconfigwidget.h index 2a65801e..97087dc7 100644 --- a/parts/doxygen/doxygenconfigwidget.h +++ b/parts/doxygen/doxygenconfigwidget.h @@ -23,7 +23,7 @@ class IInput; class DoxygenConfigWidget : public TQTabWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/doxygen/doxygenpart.h b/parts/doxygen/doxygenpart.h index aaa438de..47d215ca 100644 --- a/parts/doxygen/doxygenpart.h +++ b/parts/doxygen/doxygenpart.h @@ -39,7 +39,7 @@ namespace KTextEditor{ class DoxygenPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/doxygen/input.h b/parts/doxygen/input.h index 9a5189da..ae4a2d55 100644 --- a/parts/doxygen/input.h +++ b/parts/doxygen/input.h @@ -35,7 +35,7 @@ class IInput class InputBool : public TQWidget, public IInput { - Q_OBJECT + TQ_OBJECT public: @@ -63,7 +63,7 @@ private: class InputInt : public TQWidget, public IInput { - Q_OBJECT + TQ_OBJECT public: @@ -92,7 +92,7 @@ private: class InputString : public TQWidget, public IInput { - Q_OBJECT + TQ_OBJECT public: @@ -133,7 +133,7 @@ private: class InputStrList : public TQWidget, public IInput { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/filecreate/addglobaldlg.h b/parts/filecreate/addglobaldlg.h index 57631e1e..762296e7 100644 --- a/parts/filecreate/addglobaldlg.h +++ b/parts/filecreate/addglobaldlg.h @@ -22,7 +22,7 @@ class TQPushButton; class AddGlobalDlg : public TQDialog { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/filecreate/fcconfigwidget.h b/parts/filecreate/fcconfigwidget.h index 98623bbb..bc39949d 100644 --- a/parts/filecreate/fcconfigwidget.h +++ b/parts/filecreate/fcconfigwidget.h @@ -28,7 +28,7 @@ class FileType; class FCConfigWidget : public FCConfigWidgetBase { -Q_OBJECT +TQ_OBJECT public: FCConfigWidget(FileCreatePart * part, bool global, TQWidget *parent, const char *name); diff --git a/parts/filecreate/fctemplateedit.h b/parts/filecreate/fctemplateedit.h index ca03aa6e..dd78df9d 100644 --- a/parts/filecreate/fctemplateedit.h +++ b/parts/filecreate/fctemplateedit.h @@ -16,7 +16,7 @@ class FCTemplateEdit : public FCTemplateEditBase { -Q_OBJECT +TQ_OBJECT public: FCTemplateEdit(TQWidget *parent=0, const char *name=0); diff --git a/parts/filecreate/fctypeedit.h b/parts/filecreate/fctypeedit.h index 062cf7d9..d9dcc9f9 100644 --- a/parts/filecreate/fctypeedit.h +++ b/parts/filecreate/fctypeedit.h @@ -16,7 +16,7 @@ class FCTypeEdit : public FCTypeEditBase { -Q_OBJECT +TQ_OBJECT public: FCTypeEdit(TQWidget *parent = 0, char *name = 0); diff --git a/parts/filecreate/filecreate_filedialog.h b/parts/filecreate/filecreate_filedialog.h index 54365717..ac6a7a00 100644 --- a/parts/filecreate/filecreate_filedialog.h +++ b/parts/filecreate/filecreate_filedialog.h @@ -20,7 +20,7 @@ namespace FileCreate { class FileDialog : public KFileDialog { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/filecreate/filecreate_newfile.h b/parts/filecreate/filecreate_newfile.h index be11024d..67f83b49 100644 --- a/parts/filecreate/filecreate_newfile.h +++ b/parts/filecreate/filecreate_newfile.h @@ -25,7 +25,7 @@ class KLineEdit; namespace FileCreate { class NewFileChooser : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: NewFileChooser(TQWidget *parent=0); diff --git a/parts/filecreate/filecreate_part.h b/parts/filecreate/filecreate_part.h index ab870791..d281db5a 100644 --- a/parts/filecreate/filecreate_part.h +++ b/parts/filecreate/filecreate_part.h @@ -38,7 +38,7 @@ using namespace FileCreate; class FileCreatePart : public KDevCreateFile { - Q_OBJECT + TQ_OBJECT friend class FCConfigWidget; diff --git a/parts/filecreate/filecreate_typechoosersig.h b/parts/filecreate/filecreate_typechoosersig.h index 5ee090a2..4f8eb2d1 100644 --- a/parts/filecreate/filecreate_typechoosersig.h +++ b/parts/filecreate/filecreate_typechoosersig.h @@ -8,7 +8,7 @@ namespace FileCreate { class FileType; class Signaller : public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/filecreate/filecreate_widget2.h b/parts/filecreate/filecreate_widget2.h index 217d37ce..ef9908a9 100644 --- a/parts/filecreate/filecreate_widget2.h +++ b/parts/filecreate/filecreate_widget2.h @@ -30,7 +30,7 @@ namespace FileCreate { class FriendlyWidget : public TQTable, public TypeChooser { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/filecreate/filecreate_widget3.h b/parts/filecreate/filecreate_widget3.h index ac8b866e..bd0bd594 100644 --- a/parts/filecreate/filecreate_widget3.h +++ b/parts/filecreate/filecreate_widget3.h @@ -29,7 +29,7 @@ namespace FileCreate { class ListWidget : public TDEListView, public TypeChooser { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/filelist/filelist_widget.h b/parts/filelist/filelist_widget.h index ace8ed0b..c1b862fc 100644 --- a/parts/filelist/filelist_widget.h +++ b/parts/filelist/filelist_widget.h @@ -32,7 +32,7 @@ namespace KParts { class Part; } class FileListWidget : public TDEListView, public TQToolTip { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/filelist/projectviewconfig.h b/parts/filelist/projectviewconfig.h index 8a39f6db..0957d060 100644 --- a/parts/filelist/projectviewconfig.h +++ b/parts/filelist/projectviewconfig.h @@ -26,7 +26,7 @@ class ProjectviewConfig: public ProjectviewConfigBase { - Q_OBJECT + TQ_OBJECT public: ProjectviewConfig(TQWidget *parent = 0, const char *name = 0); diff --git a/parts/filelist/projectviewpart.h b/parts/filelist/projectviewpart.h index 392a9cdf..0111460d 100644 --- a/parts/filelist/projectviewpart.h +++ b/parts/filelist/projectviewpart.h @@ -55,7 +55,7 @@ FIXME at project open I get the default view and the open files at last close */ class ProjectviewPart: public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/filelist/projectviewprojectconfig.h b/parts/filelist/projectviewprojectconfig.h index a0a4429e..8bbe30db 100644 --- a/parts/filelist/projectviewprojectconfig.h +++ b/parts/filelist/projectviewprojectconfig.h @@ -27,7 +27,7 @@ class ProjectviewPart; class ProjectviewProjectConfig: public ProjectviewProjectConfigBase { - Q_OBJECT + TQ_OBJECT public: ProjectviewProjectConfig(ProjectviewPart *part, TQWidget *parent = 0, const char *name = 0); diff --git a/parts/fileselector/fileselector_part.h b/parts/fileselector/fileselector_part.h index f415444d..6f96ab5d 100644 --- a/parts/fileselector/fileselector_part.h +++ b/parts/fileselector/fileselector_part.h @@ -13,7 +13,7 @@ class KDialogBase; class FileSelectorPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: FileSelectorPart(TQObject *parent, const char *name, const TQStringList &); diff --git a/parts/fileselector/fileselector_widget.h b/parts/fileselector/fileselector_widget.h index ef64f88c..9462d383 100644 --- a/parts/fileselector/fileselector_widget.h +++ b/parts/fileselector/fileselector_widget.h @@ -59,7 +59,7 @@ namespace KTextEditor /* I think this fix for not moving toolbars is better */ class KDevFileSelectorToolBar: public TDEToolBar { - Q_OBJECT + TQ_OBJECT public: KDevFileSelectorToolBar(TQWidget *parent); @@ -70,7 +70,7 @@ public: class KDevFileSelectorToolBarParent: public TQFrame { - Q_OBJECT + TQ_OBJECT public: KDevFileSelectorToolBarParent(TQWidget *parent); @@ -86,7 +86,7 @@ protected: class KDevDirOperator: public KDirOperator { - Q_OBJECT + TQ_OBJECT public: KDevDirOperator(FileSelectorPart *part, const KURL &urlName=KURL(), TQWidget *parent=0, const char *name=0) @@ -103,7 +103,7 @@ private: class KDevFileSelector : public TQWidget { - Q_OBJECT + TQ_OBJECT friend class KFSConfigPage; @@ -180,7 +180,7 @@ private: */ class KFSConfigPage : public TQWidget { - Q_OBJECT + TQ_OBJECT public: KFSConfigPage( TQWidget* parent=0, const char *name=0, KDevFileSelector *kfs=0); diff --git a/parts/fileselector/kbookmarkhandler.h b/parts/fileselector/kbookmarkhandler.h index 4ec065aa..c54f92ca 100644 --- a/parts/fileselector/kbookmarkhandler.h +++ b/parts/fileselector/kbookmarkhandler.h @@ -30,7 +30,7 @@ class TDEActionMenu; class KBookmarkHandler : public TQObject, public KBookmarkOwner { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/fileselector/tdeactionselector.h b/parts/fileselector/tdeactionselector.h index 213363cf..2de231eb 100644 --- a/parts/fileselector/tdeactionselector.h +++ b/parts/fileselector/tdeactionselector.h @@ -74,7 +74,7 @@ class TDEActionSelectorPrivate; */ class TDEActionSelector : public TQWidget { - Q_OBJECT + TQ_OBJECT TQ_ENUMS( ButtonIconSize InsertionPolicy ) TQ_PROPERTY( bool moveOnDoubleClick READ moveOnDoubleClick WRITE setMoveOnDoubleClick ) diff --git a/parts/fileview/addfilegroupdlg.h b/parts/fileview/addfilegroupdlg.h index 3465893e..ff67bf93 100644 --- a/parts/fileview/addfilegroupdlg.h +++ b/parts/fileview/addfilegroupdlg.h @@ -18,7 +18,7 @@ class TQPushButton; class AddFileGroupDialog : public TQDialog { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/fileview/filegroupsconfigwidget.h b/parts/fileview/filegroupsconfigwidget.h index 545471b0..500afa31 100644 --- a/parts/fileview/filegroupsconfigwidget.h +++ b/parts/fileview/filegroupsconfigwidget.h @@ -19,7 +19,7 @@ class FileGroupsPart; class FileGroupsConfigWidget : public FileGroupsConfigWidgetBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/fileview/filegroupspart.h b/parts/fileview/filegroupspart.h index 314f1663..97612ab4 100644 --- a/parts/fileview/filegroupspart.h +++ b/parts/fileview/filegroupspart.h @@ -22,7 +22,7 @@ class KDialogBase; class FileGroupsPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/fileview/filegroupswidget.h b/parts/fileview/filegroupswidget.h index 3294db32..a2f0dc3c 100644 --- a/parts/fileview/filegroupswidget.h +++ b/parts/fileview/filegroupswidget.h @@ -20,7 +20,7 @@ class KDevProject; class FileGroupsWidget : public TDEListView { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/fileview/filetreeviewwidgetimpl.h b/parts/fileview/filetreeviewwidgetimpl.h index bca8b1cd..9e69d8de 100644 --- a/parts/fileview/filetreeviewwidgetimpl.h +++ b/parts/fileview/filetreeviewwidgetimpl.h @@ -38,7 +38,7 @@ class TQPopupMenu; */ class FileTreeViewWidgetImpl : public TQObject { - Q_OBJECT + TQ_OBJECT public: FileTreeViewWidgetImpl( FileTreeWidget *parent, const char *name ); diff --git a/parts/fileview/filetreewidget.h b/parts/fileview/filetreewidget.h index f6abb0c6..4ac62aad 100644 --- a/parts/fileview/filetreewidget.h +++ b/parts/fileview/filetreewidget.h @@ -46,7 +46,7 @@ class KDevVersionControl; */ class FileTreeWidget : public KFileTreeView { - Q_OBJECT + TQ_OBJECT public: FileTreeWidget( FileViewPart *part, TQWidget *parent, KDevVCSFileInfoProvider *infoProvider ); diff --git a/parts/fileview/fileviewpart.h b/parts/fileview/fileviewpart.h index 68eb6a56..f4be9861 100644 --- a/parts/fileview/fileviewpart.h +++ b/parts/fileview/fileviewpart.h @@ -23,7 +23,7 @@ class KDevVersionControl; class FileViewPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/fileview/partwidget.h b/parts/fileview/partwidget.h index 53a52bc9..c7f8c02c 100644 --- a/parts/fileview/partwidget.h +++ b/parts/fileview/partwidget.h @@ -18,7 +18,7 @@ class FileViewPart; class PartWidget : public TQVBox { - Q_OBJECT + TQ_OBJECT public: PartWidget( FileViewPart *part, TQWidget *parent = 0 ); diff --git a/parts/fileview/stdfiletreewidgetimpl.h b/parts/fileview/stdfiletreewidgetimpl.h index 5502c192..13f393f1 100644 --- a/parts/fileview/stdfiletreewidgetimpl.h +++ b/parts/fileview/stdfiletreewidgetimpl.h @@ -22,7 +22,7 @@ */ class StdFileTreeWidgetImpl : public FileTreeViewWidgetImpl { - Q_OBJECT + TQ_OBJECT public: StdFileTreeWidgetImpl( FileTreeWidget *parent ); diff --git a/parts/fileview/vcscolorsconfigwidget.h b/parts/fileview/vcscolorsconfigwidget.h index d8a3b726..5fd9aedc 100644 --- a/parts/fileview/vcscolorsconfigwidget.h +++ b/parts/fileview/vcscolorsconfigwidget.h @@ -36,7 +36,7 @@ struct VCSColors class VCSColorsConfigWidget : public VCSColorsConfigWidgetBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/fileview/vcsfiletreewidgetimpl.h b/parts/fileview/vcsfiletreewidgetimpl.h index 00a38b32..f0c33a9e 100644 --- a/parts/fileview/vcsfiletreewidgetimpl.h +++ b/parts/fileview/vcsfiletreewidgetimpl.h @@ -24,7 +24,7 @@ class TDEToggleAction; */ class VCSFileTreeWidgetImpl : public FileTreeViewWidgetImpl { - Q_OBJECT + TQ_OBJECT public: VCSFileTreeWidgetImpl( FileTreeWidget *parent, KDevVCSFileInfoProvider *infoProvider ); diff --git a/parts/filter/filterpart.h b/parts/filter/filterpart.h index b8322425..44a78e3c 100644 --- a/parts/filter/filterpart.h +++ b/parts/filter/filterpart.h @@ -21,7 +21,7 @@ class ShellFilterDialog; class FilterPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/filter/kdevfilterIface.h b/parts/filter/kdevfilterIface.h index fae74022..58d75eb1 100644 --- a/parts/filter/kdevfilterIface.h +++ b/parts/filter/kdevfilterIface.h @@ -9,7 +9,7 @@ class FilterPart; class KDevFilterIface : public TQObject, public DCOPObject { - Q_OBJECT + TQ_OBJECT // K_DCOP public: diff --git a/parts/filter/shellfilterdlg.h b/parts/filter/shellfilterdlg.h index 87657501..f82f474b 100644 --- a/parts/filter/shellfilterdlg.h +++ b/parts/filter/shellfilterdlg.h @@ -22,7 +22,7 @@ class TDEProcess; class ShellFilterDialog : public TQDialog { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/filter/shellinsertdlg.h b/parts/filter/shellinsertdlg.h index fda59678..8c40ddbc 100644 --- a/parts/filter/shellinsertdlg.h +++ b/parts/filter/shellinsertdlg.h @@ -22,7 +22,7 @@ class TDEProcess; class ShellInsertDialog : public TQDialog { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/fullscreen/fullscreen_part.h b/parts/fullscreen/fullscreen_part.h index fcb566e8..6e43f87f 100644 --- a/parts/fullscreen/fullscreen_part.h +++ b/parts/fullscreen/fullscreen_part.h @@ -19,7 +19,7 @@ class TDEAction; class FullScreenPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: FullScreenPart(TQObject *parent, const char *name, const TQStringList &); diff --git a/parts/grepview/grepdlg.h b/parts/grepview/grepdlg.h index fa00badb..ca00fd1d 100644 --- a/parts/grepview/grepdlg.h +++ b/parts/grepview/grepdlg.h @@ -27,7 +27,7 @@ class KLineEdit; class GrepDialog : public TQDialog { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/grepview/grepviewpart.h b/parts/grepview/grepviewpart.h index 4ebd7638..da2aead6 100644 --- a/parts/grepview/grepviewpart.h +++ b/parts/grepview/grepviewpart.h @@ -24,7 +24,7 @@ class GrepViewWidget; class GrepViewPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/grepview/grepviewwidget.h b/parts/grepview/grepviewwidget.h index 3bf803b5..68fd988b 100644 --- a/parts/grepview/grepviewwidget.h +++ b/parts/grepview/grepviewwidget.h @@ -24,7 +24,7 @@ class TQHBoxLayout; class TQToolButton; class GrepViewProcessWidget : public ProcessWidget { - Q_OBJECT + TQ_OBJECT public: GrepViewProcessWidget(TQWidget* parent) : ProcessWidget(parent) {}; @@ -59,7 +59,7 @@ private: class GrepViewWidget : public TQWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/konsole/konsoleviewpart.h b/parts/konsole/konsoleviewpart.h index 9bcecb38..0b831778 100644 --- a/parts/konsole/konsoleviewpart.h +++ b/parts/konsole/konsoleviewpart.h @@ -21,7 +21,7 @@ class KDevShellWidget; class KonsoleViewPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: KonsoleViewPart(TQObject *parent, const char *name, const TQStringList &); diff --git a/parts/konsole/konsoleviewwidget.h b/parts/konsole/konsoleviewwidget.h index 2bf3160a..b3781871 100644 --- a/parts/konsole/konsoleviewwidget.h +++ b/parts/konsole/konsoleviewwidget.h @@ -29,7 +29,7 @@ class TQVBoxLayout; class KonsoleViewWidget : public TQWidget { - Q_OBJECT + TQ_OBJECT public: KonsoleViewWidget(KonsoleViewPart *part); diff --git a/parts/openwith/openwithpart.h b/parts/openwith/openwithpart.h index bd338a3f..6cbbd6c0 100644 --- a/parts/openwith/openwithpart.h +++ b/parts/openwith/openwithpart.h @@ -11,7 +11,7 @@ class Context; class OpenWithPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/outputviews/appoutputviewpart.h b/parts/outputviews/appoutputviewpart.h index 1067af97..db643f54 100644 --- a/parts/outputviews/appoutputviewpart.h +++ b/parts/outputviews/appoutputviewpart.h @@ -22,7 +22,7 @@ class AppOutputWidget; class AppOutputViewPart : public KDevAppFrontend { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/outputviews/appoutputwidget.h b/parts/outputviews/appoutputwidget.h index 9e5810ea..9c95b879 100644 --- a/parts/outputviews/appoutputwidget.h +++ b/parts/outputviews/appoutputwidget.h @@ -21,7 +21,7 @@ class AppOutputViewPart; class AppOutputWidget : public ProcessWidget { - Q_OBJECT + TQ_OBJECT friend class AppOutputViewPart; public: diff --git a/parts/outputviews/compileerrorfilter.h b/parts/outputviews/compileerrorfilter.h index 81a78020..e703baaf 100644 --- a/parts/outputviews/compileerrorfilter.h +++ b/parts/outputviews/compileerrorfilter.h @@ -21,7 +21,7 @@ class MakeItem; class CompileErrorFilter : public TQObject, public OutputFilter { -Q_OBJECT +TQ_OBJECT public: diff --git a/parts/outputviews/directorystatusmessagefilter.h b/parts/outputviews/directorystatusmessagefilter.h index 13d23d02..dbcd4424 100644 --- a/parts/outputviews/directorystatusmessagefilter.h +++ b/parts/outputviews/directorystatusmessagefilter.h @@ -20,7 +20,7 @@ class ExitingDirectoryItem; class DirectoryStatusMessageFilter : public TQObject, public OutputFilter { -Q_OBJECT +TQ_OBJECT public: diff --git a/parts/outputviews/makeactionfilter.h b/parts/outputviews/makeactionfilter.h index f030f555..bf71a9e0 100644 --- a/parts/outputviews/makeactionfilter.h +++ b/parts/outputviews/makeactionfilter.h @@ -22,7 +22,7 @@ class ActionItem; class MakeActionFilter : public TQObject, public OutputFilter { -Q_OBJECT +TQ_OBJECT public: diff --git a/parts/outputviews/makeviewpart.h b/parts/outputviews/makeviewpart.h index 89f2a8bd..b11d2f54 100644 --- a/parts/outputviews/makeviewpart.h +++ b/parts/outputviews/makeviewpart.h @@ -22,7 +22,7 @@ class MakeWidget; class MakeViewPart : public KDevMakeFrontend { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/outputviews/makewidget.h b/parts/outputviews/makewidget.h index b01c95c4..127ae064 100644 --- a/parts/outputviews/makewidget.h +++ b/parts/outputviews/makewidget.h @@ -36,7 +36,7 @@ namespace KTextEditor { class Document; } class MakeWidget : public TQTextEdit { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/outputviews/otherfilter.h b/parts/outputviews/otherfilter.h index 4bfc0733..849ecab9 100644 --- a/parts/outputviews/otherfilter.h +++ b/parts/outputviews/otherfilter.h @@ -20,7 +20,7 @@ class MakeItem; class OtherFilter : public TQObject, public OutputFilter { -Q_OBJECT +TQ_OBJECT public: diff --git a/parts/partexplorer/partexplorer_plugin.h b/parts/partexplorer/partexplorer_plugin.h index eea44750..0a10d96b 100644 --- a/parts/partexplorer/partexplorer_plugin.h +++ b/parts/partexplorer/partexplorer_plugin.h @@ -23,7 +23,7 @@ class PartExplorerForm; class PartExplorerPlugin : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: /** diff --git a/parts/partexplorer/partexplorerform.h b/parts/partexplorer/partexplorerform.h index e5bcabc1..fd882671 100644 --- a/parts/partexplorer/partexplorerform.h +++ b/parts/partexplorer/partexplorerform.h @@ -25,7 +25,7 @@ class PartExplorerFormBase; */ class PartExplorerForm : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: PartExplorerForm( TQWidget *parent = 0 ); diff --git a/parts/quickopen/quickopen_part.h b/parts/quickopen/quickopen_part.h index fa1d85e3..98329db6 100644 --- a/parts/quickopen/quickopen_part.h +++ b/parts/quickopen/quickopen_part.h @@ -29,7 +29,7 @@ class TDEAction; class QuickOpenPart : public KDevQuickOpen { - Q_OBJECT + TQ_OBJECT public: QuickOpenPart(TQObject *parent, const char *name, const TQStringList &); diff --git a/parts/quickopen/quickopenclassdialog.h b/parts/quickopen/quickopenclassdialog.h index 13e01360..3e2df273 100644 --- a/parts/quickopen/quickopenclassdialog.h +++ b/parts/quickopen/quickopenclassdialog.h @@ -29,7 +29,7 @@ class QuickOpenPart; class QuickOpenClassDialog : public QuickOpenDialog { - Q_OBJECT + TQ_OBJECT public: QuickOpenClassDialog(QuickOpenPart* part, TQWidget* parent = 0, const char* name = 0, bool modal = TRUE, WFlags fl = 0 ); diff --git a/parts/quickopen/quickopendialog.h b/parts/quickopen/quickopendialog.h index d763b31e..f768b4aa 100644 --- a/parts/quickopen/quickopendialog.h +++ b/parts/quickopen/quickopendialog.h @@ -33,7 +33,7 @@ class TDECompletion; class QuickOpenDialog : public QuickOpenDialogBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/quickopen/quickopenfiledialog.h b/parts/quickopen/quickopenfiledialog.h index 6db19401..2f94e0db 100644 --- a/parts/quickopen/quickopenfiledialog.h +++ b/parts/quickopen/quickopenfiledialog.h @@ -31,7 +31,7 @@ class TDECompletion; class QuickOpenFileDialog : public QuickOpenDialog { - Q_OBJECT + TQ_OBJECT public: QuickOpenFileDialog(QuickOpenPart* part, TQWidget* parent = 0, const char* name = 0, bool modal = TRUE, WFlags fl = 0 ); diff --git a/parts/quickopen/quickopenfunctionchooseform.h b/parts/quickopen/quickopenfunctionchooseform.h index 06f58e47..a5dd5085 100644 --- a/parts/quickopen/quickopenfunctionchooseform.h +++ b/parts/quickopen/quickopenfunctionchooseform.h @@ -27,7 +27,7 @@ class QuickOpenFunctionChooseForm : public QuickOpenFunctionChooseFormBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/quickopen/quickopenfunctiondialog.h b/parts/quickopen/quickopenfunctiondialog.h index dc5c69e4..1927f673 100644 --- a/parts/quickopen/quickopenfunctiondialog.h +++ b/parts/quickopen/quickopenfunctiondialog.h @@ -31,7 +31,7 @@ class QuickOpenPart; class QuickOpenFunctionDialog : public QuickOpenDialog { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/regexptest/regexptestdlg.h b/parts/regexptest/regexptestdlg.h index 4c7094a6..32fd1119 100644 --- a/parts/regexptest/regexptestdlg.h +++ b/parts/regexptest/regexptestdlg.h @@ -19,7 +19,7 @@ class KDevPlugin; class RegexpTestDialog : public RegexpTestDialogBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/regexptest/regexptestpart.h b/parts/regexptest/regexptestpart.h index ec153d90..479bee03 100644 --- a/parts/regexptest/regexptestpart.h +++ b/parts/regexptest/regexptestpart.h @@ -21,7 +21,7 @@ class RegexpTestDialog; class RegexpTestPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/replace/replace_part.h b/parts/replace/replace_part.h index fbd0f2f7..d00cc11d 100644 --- a/parts/replace/replace_part.h +++ b/parts/replace/replace_part.h @@ -24,7 +24,7 @@ class Context; class ReplacePart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/replace/replace_widget.h b/parts/replace/replace_widget.h index c9063928..e666b872 100644 --- a/parts/replace/replace_widget.h +++ b/parts/replace/replace_widget.h @@ -28,7 +28,7 @@ class ReplaceView; class ReplaceWidget : public TQWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/replace/replacedlgimpl.h b/parts/replace/replacedlgimpl.h index cc53029e..f71adaa6 100644 --- a/parts/replace/replacedlgimpl.h +++ b/parts/replace/replacedlgimpl.h @@ -8,7 +8,7 @@ class TQDialog; class ReplaceDlgImpl : public ReplaceDlg { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/replace/replaceview.h b/parts/replace/replaceview.h index 1b7591aa..6f3d2b04 100644 --- a/parts/replace/replaceview.h +++ b/parts/replace/replaceview.h @@ -23,7 +23,7 @@ class ReplaceItem; class ReplaceView : public TDEListView { - Q_OBJECT + TQ_OBJECT signals: diff --git a/parts/scripting/scriptingglobalconfig.h b/parts/scripting/scriptingglobalconfig.h index b5e3ad17..9d9d1f91 100644 --- a/parts/scripting/scriptingglobalconfig.h +++ b/parts/scripting/scriptingglobalconfig.h @@ -27,7 +27,7 @@ class scriptingPart; class scriptingGlobalConfig: public scriptingGlobalConfigBase { - Q_OBJECT + TQ_OBJECT public: scriptingGlobalConfig(scriptingPart *part, TQWidget *parent = 0, const char *name = 0); diff --git a/parts/scripting/scriptingpart.h b/parts/scripting/scriptingpart.h index 832318b9..0dc63d45 100644 --- a/parts/scripting/scriptingpart.h +++ b/parts/scripting/scriptingpart.h @@ -36,7 +36,7 @@ Please read the README.dox file for more info about this part */ class scriptingPart: public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: scriptingPart(TQObject *parent, const char *name, const TQStringList &args); diff --git a/parts/snippet/snippet_part.h b/parts/snippet/snippet_part.h index 8ffd8fce..90052c2e 100644 --- a/parts/snippet/snippet_part.h +++ b/parts/snippet/snippet_part.h @@ -26,7 +26,7 @@ For more info read the README.dox file */ class SnippetPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/snippet/snippet_widget.h b/parts/snippet/snippet_widget.h index 8b6c17a1..5ed9ec82 100644 --- a/parts/snippet/snippet_widget.h +++ b/parts/snippet/snippet_widget.h @@ -39,7 +39,7 @@ tooltips which contains the text of the snippet */ class SnippetWidget : public TDEListView, public TQToolTip { - Q_OBJECT + TQ_OBJECT friend class SnippetSettings; //to allow SnippetSettings to call languageChanged() diff --git a/parts/snippet/snippetsettings.h b/parts/snippet/snippetsettings.h index 4c0d922a..92d34309 100644 --- a/parts/snippet/snippetsettings.h +++ b/parts/snippet/snippetsettings.h @@ -23,7 +23,7 @@ same named .ui file */ class SnippetSettings : public SnippetSettingsBase { -Q_OBJECT +TQ_OBJECT public: SnippetSettings(TQWidget *parent = 0, const char *name = 0); diff --git a/parts/texttools/texttoolspart.h b/parts/texttools/texttoolspart.h index 0d822a65..7b428c83 100644 --- a/parts/texttools/texttoolspart.h +++ b/parts/texttools/texttoolspart.h @@ -21,7 +21,7 @@ class TextToolsWidget; class TextToolsPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/texttools/texttoolswidget.h b/parts/texttools/texttoolswidget.h index eaca3ac7..0b435ac4 100644 --- a/parts/texttools/texttoolswidget.h +++ b/parts/texttools/texttoolswidget.h @@ -23,7 +23,7 @@ namespace KTextEditor { class EditInterface; } class TextToolsWidget : public TDEListView { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/tipofday/tipofday_part.h b/parts/tipofday/tipofday_part.h index 4b982800..a347946f 100644 --- a/parts/tipofday/tipofday_part.h +++ b/parts/tipofday/tipofday_part.h @@ -12,7 +12,7 @@ class TipOfDayPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/tools/kapplicationtree.h b/parts/tools/kapplicationtree.h index 0ba2cc9f..ddd9f68a 100644 --- a/parts/tools/kapplicationtree.h +++ b/parts/tools/kapplicationtree.h @@ -73,7 +73,7 @@ protected: */ class KDevApplicationTree : public TDEListView { - Q_OBJECT + TQ_OBJECT public: KDevApplicationTree( TQWidget *parent, const char* name = 0 ); diff --git a/parts/tools/tools_part.h b/parts/tools/tools_part.h index 20af2ea8..8c87fd4f 100644 --- a/parts/tools/tools_part.h +++ b/parts/tools/tools_part.h @@ -22,7 +22,7 @@ class ToolsWidget; class ToolsPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/tools/toolsconfig.h b/parts/tools/toolsconfig.h index 074d5900..2c1158fa 100644 --- a/parts/tools/toolsconfig.h +++ b/parts/tools/toolsconfig.h @@ -26,7 +26,7 @@ public: class ToolsConfig : public TQWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/tools/toolsconfigwidget.h b/parts/tools/toolsconfigwidget.h index 99b2c95d..d8baa9c5 100644 --- a/parts/tools/toolsconfigwidget.h +++ b/parts/tools/toolsconfigwidget.h @@ -22,7 +22,7 @@ struct ToolsConfigEntry; class ToolsConfigWidget : public ToolsConfigWidgetBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/uimode/uichooser_part.h b/parts/uimode/uichooser_part.h index ff822e1d..98c92707 100644 --- a/parts/uimode/uichooser_part.h +++ b/parts/uimode/uichooser_part.h @@ -14,7 +14,7 @@ class ConfigWidgetProxy; class UIChooserPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/uimode/uichooser_widget.h b/parts/uimode/uichooser_widget.h index 11cb031d..e1ee25bf 100644 --- a/parts/uimode/uichooser_widget.h +++ b/parts/uimode/uichooser_widget.h @@ -11,7 +11,7 @@ class UIChooserPart; class UIChooserWidget : public UIChooser { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/valgrind/valgrind_dialog.h b/parts/valgrind/valgrind_dialog.h index 99e7bd55..6e4f598b 100644 --- a/parts/valgrind/valgrind_dialog.h +++ b/parts/valgrind/valgrind_dialog.h @@ -13,7 +13,7 @@ class DialogWidget; **/ class ValgrindDialog : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: enum Type { Memcheck = 0, Calltree = 1 }; diff --git a/parts/valgrind/valgrind_part.h b/parts/valgrind/valgrind_part.h index 6a05737b..b1464104 100644 --- a/parts/valgrind/valgrind_part.h +++ b/parts/valgrind/valgrind_part.h @@ -15,7 +15,7 @@ class TDEProcess; class ValgrindPart : public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/valgrind/valgrind_widget.h b/parts/valgrind/valgrind_widget.h index bb525758..e0539ee2 100644 --- a/parts/valgrind/valgrind_widget.h +++ b/parts/valgrind/valgrind_widget.h @@ -14,7 +14,7 @@ class TQPopupMenu; class ValgrindWidget : public TQWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/parts/vcsmanager/vcsmanagerpart.h b/parts/vcsmanager/vcsmanagerpart.h index 1fbccbff..7347f134 100644 --- a/parts/vcsmanager/vcsmanagerpart.h +++ b/parts/vcsmanager/vcsmanagerpart.h @@ -37,7 +37,7 @@ Please read the README.dox file for more info about this part */ class VCSManagerPart: public KDevPlugin { - Q_OBJECT + TQ_OBJECT public: VCSManagerPart(TQObject *parent, const char *name, const TQStringList &args); diff --git a/parts/vcsmanager/vcsmanagerprojectconfig.h b/parts/vcsmanager/vcsmanagerprojectconfig.h index 7e33497c..a3baf19a 100644 --- a/parts/vcsmanager/vcsmanagerprojectconfig.h +++ b/parts/vcsmanager/vcsmanagerprojectconfig.h @@ -28,7 +28,7 @@ class VCSManagerPart; class VCSManagerProjectConfig: public VCSManagerProjectConfigBase { - Q_OBJECT + TQ_OBJECT public: VCSManagerProjectConfig( VCSManagerPart *part, TQWidget *parent = 0, const char *name = 0); |