summaryrefslogtreecommitdiffstats
path: root/kate
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:05:05 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:05:05 +0900
commit826b1b771cc20f515acf936bd3a2dcd83ce353b8 (patch)
tree162b5b770de9e59e9e4585883875efc50d78cd43 /kate
parent05e1c8a9a53e4c272b40ec142d399393785c98c5 (diff)
downloadtdeaddons-826b1b771cc20f515acf936bd3a2dcd83ce353b8.tar.gz
tdeaddons-826b1b771cc20f515acf936bd3a2dcd83ce353b8.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kate')
-rw-r--r--kate/cppsymbolviewer/plugin_katesymbolviewer.h6
-rw-r--r--kate/filelistloader/katefll_initplugin.h2
-rw-r--r--kate/filelistloader/katefll_plugin.h2
-rw-r--r--kate/filetemplates/plugin/filetemplates.h10
-rw-r--r--kate/helloworld/plugin_katehelloworld.h2
-rw-r--r--kate/htmltools/plugin_katehtmltools.h2
-rw-r--r--kate/insertcommand/plugin_kateinsertcommand.h6
-rw-r--r--kate/katesort/plugin_sort.h4
-rw-r--r--kate/katesort/sortdialog.h2
-rw-r--r--kate/kjswrapper/bindings.h2
-rw-r--r--kate/kjswrapper/plugin_katekjswrapper.h6
-rw-r--r--kate/kpybrowser/kpybrowser.h2
-rw-r--r--kate/kpybrowser/pybrowse_part.h4
-rw-r--r--kate/make/plugin_katemake.h4
-rw-r--r--kate/modeline/ModelinePlugin.h2
-rw-r--r--kate/openheader/plugin_kateopenheader.h2
-rw-r--r--kate/snippets/csnippet.h2
-rw-r--r--kate/snippets/plugin_katesnippets.h4
-rw-r--r--kate/tabbarextension/plugin_katetabbarextension.h10
-rw-r--r--kate/textfilter/plugin_katetextfilter.h2
-rw-r--r--kate/xmlcheck/plugin_katexmlcheck.h4
-rw-r--r--kate/xmltools/plugin_katexmltools.h4
22 files changed, 42 insertions, 42 deletions
diff --git a/kate/cppsymbolviewer/plugin_katesymbolviewer.h b/kate/cppsymbolviewer/plugin_katesymbolviewer.h
index 7d2736f..8fbe3cd 100644
--- a/kate/cppsymbolviewer/plugin_katesymbolviewer.h
+++ b/kate/cppsymbolviewer/plugin_katesymbolviewer.h
@@ -45,7 +45,7 @@
class KatePluginSymbolViewerView : public TQObject, public KXMLGUIClient
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -88,7 +88,7 @@ class KatePluginSymbolViewerView : public TQObject, public KXMLGUIClient
*/
class KatePluginSymbolViewerConfigPage : public Kate::PluginConfigPage
{
- Q_OBJECT
+ TQ_OBJECT
friend class KatePluginSymbolViewer;
@@ -124,7 +124,7 @@ class KatePluginSymbolViewerConfigPage : public Kate::PluginConfigPage
class KatePluginSymbolViewer : public Kate::Plugin, Kate::PluginViewInterface, Kate::PluginConfigInterfaceExtension
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kate/filelistloader/katefll_initplugin.h b/kate/filelistloader/katefll_initplugin.h
index 09e1e24..f17af0f 100644
--- a/kate/filelistloader/katefll_initplugin.h
+++ b/kate/filelistloader/katefll_initplugin.h
@@ -30,7 +30,7 @@
class InitPluginKateFileListLoader : public Kate::InitPlugin
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kate/filelistloader/katefll_plugin.h b/kate/filelistloader/katefll_plugin.h
index ed7c1a8..48d9607 100644
--- a/kate/filelistloader/katefll_plugin.h
+++ b/kate/filelistloader/katefll_plugin.h
@@ -32,7 +32,7 @@
class PluginKateFileListLoader : public Kate::Plugin, Kate::PluginViewInterface
{
- Q_OBJECT
+ TQ_OBJECT
public:
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 );
diff --git a/kate/helloworld/plugin_katehelloworld.h b/kate/helloworld/plugin_katehelloworld.h
index 739b865..c544492 100644
--- a/kate/helloworld/plugin_katehelloworld.h
+++ b/kate/helloworld/plugin_katehelloworld.h
@@ -11,7 +11,7 @@
class KatePluginHelloWorld : public Kate::Plugin, Kate::PluginViewInterface
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kate/htmltools/plugin_katehtmltools.h b/kate/htmltools/plugin_katehtmltools.h
index 5b34f14..0eb4a8c 100644
--- a/kate/htmltools/plugin_katehtmltools.h
+++ b/kate/htmltools/plugin_katehtmltools.h
@@ -30,7 +30,7 @@
class PluginKateHtmlTools : public Kate::Plugin, Kate::PluginViewInterface
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kate/insertcommand/plugin_kateinsertcommand.h b/kate/insertcommand/plugin_kateinsertcommand.h
index c0d6edc..5e808a6 100644
--- a/kate/insertcommand/plugin_kateinsertcommand.h
+++ b/kate/insertcommand/plugin_kateinsertcommand.h
@@ -54,7 +54,7 @@ class PluginKateInsertCommand : public Kate::Plugin,
Kate::PluginViewInterface,
Kate::PluginConfigInterfaceExtension
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -103,7 +103,7 @@ class PluginKateInsertCommand : public Kate::Plugin,
class CmdPrompt : public KDialogBase
{
-Q_OBJECT
+TQ_OBJECT
public:
CmdPrompt(TQWidget* parent=0,
@@ -141,7 +141,7 @@ class WaitDlg : public KDialogBase
/** Config page for the plugin. */
class InsertCommandConfigPage : public Kate::PluginConfigPage
{
- Q_OBJECT
+ TQ_OBJECT
friend class PluginKateInsertCommand;
diff --git a/kate/katesort/plugin_sort.h b/kate/katesort/plugin_sort.h
index ee054c0..217b631 100644
--- a/kate/katesort/plugin_sort.h
+++ b/kate/katesort/plugin_sort.h
@@ -38,7 +38,7 @@
class KatePluginFactory : public KLibFactory
{
- Q_OBJECT
+ TQ_OBJECT
public:
KatePluginFactory();
@@ -52,7 +52,7 @@ class KatePluginFactory : public KLibFactory
class KatePluginSort : public Kate::Plugin, Kate::PluginViewInterface
{
- Q_OBJECT
+ TQ_OBJECT
public:
KatePluginSort( TQObject* parent = 0, const char* name = 0 );
diff --git a/kate/katesort/sortdialog.h b/kate/katesort/sortdialog.h
index 135a33a..fd22776 100644
--- a/kate/katesort/sortdialog.h
+++ b/kate/katesort/sortdialog.h
@@ -35,7 +35,7 @@
class SortDialog : public sortdialoglayout
{
- Q_OBJECT
+ TQ_OBJECT
public:
SortDialog ( TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
diff --git a/kate/kjswrapper/bindings.h b/kate/kjswrapper/bindings.h
index bb0758b..3064dce 100644
--- a/kate/kjswrapper/bindings.h
+++ b/kate/kjswrapper/bindings.h
@@ -18,7 +18,7 @@ namespace Kate {
};
class RefCountedObjectDict: public TQObject, public TQPtrDict<ObjectEntry> {
- Q_OBJECT
+ TQ_OBJECT
public:
RefCountedObjectDict(int size);
diff --git a/kate/kjswrapper/plugin_katekjswrapper.h b/kate/kjswrapper/plugin_katekjswrapper.h
index 5cd401b..96cfd2e 100644
--- a/kate/kjswrapper/plugin_katekjswrapper.h
+++ b/kate/kjswrapper/plugin_katekjswrapper.h
@@ -72,7 +72,7 @@ class PluginKateKJSWrapper : public Kate::Plugin,
Kate::PluginViewInterface,
Kate::PluginConfigInterfaceExtension
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -117,7 +117,7 @@ class PluginKateKJSWrapper : public Kate::Plugin,
/** Config page for the plugin. */
class KateKJSWrapperConfigPage : public Kate::PluginConfigPage
{
- Q_OBJECT
+ TQ_OBJECT
friend class PluginKateKJSWrapper;
@@ -167,7 +167,7 @@ class PluginKateKJSWrapperView : public KXMLGUIClient
namespace Kate {
namespace JS {
class ToolView: public TQVBox {
- Q_OBJECT
+ TQ_OBJECT
public:
ToolView(KJS::Object constr, KJS::ExecState *exec, KJSEmbed::JSFactory *factory, KJS::List parameters, const char * name);
diff --git a/kate/kpybrowser/kpybrowser.h b/kate/kpybrowser/kpybrowser.h
index 76e706f..1b17b02 100644
--- a/kate/kpybrowser/kpybrowser.h
+++ b/kate/kpybrowser/kpybrowser.h
@@ -34,7 +34,7 @@
/** KPyBrowser is the base class of the project */
class KPyBrowser : public TDEListView
{
- Q_OBJECT
+ TQ_OBJECT
public:
/** construtor */
diff --git a/kate/kpybrowser/pybrowse_part.h b/kate/kpybrowser/pybrowse_part.h
index dad5e51..15c4266 100644
--- a/kate/kpybrowser/pybrowse_part.h
+++ b/kate/kpybrowser/pybrowse_part.h
@@ -35,7 +35,7 @@
class PluginViewPyBrowse : public TQObject, KXMLGUIClient
{
- Q_OBJECT
+ TQ_OBJECT
friend class KatePluginPyBrowse;
@@ -57,7 +57,7 @@ class PluginViewPyBrowse : public TQObject, KXMLGUIClient
class KatePluginPyBrowse : public Kate::Plugin, public Kate::PluginViewInterface
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kate/make/plugin_katemake.h b/kate/make/plugin_katemake.h
index e63b27b..ac06b73 100644
--- a/kate/make/plugin_katemake.h
+++ b/kate/make/plugin_katemake.h
@@ -50,7 +50,7 @@ class TQRegExp;
class PluginKateMakeView : public TQListView, public KXMLGUIClient
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -92,7 +92,7 @@ protected:
class PluginKateMake : public Kate::Plugin, Kate::PluginViewInterface
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kate/modeline/ModelinePlugin.h b/kate/modeline/ModelinePlugin.h
index 3503e25..c98e8bc 100644
--- a/kate/modeline/ModelinePlugin.h
+++ b/kate/modeline/ModelinePlugin.h
@@ -22,7 +22,7 @@
class ModelinePlugin : public Kate::Plugin, Kate::PluginViewInterface
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kate/openheader/plugin_kateopenheader.h b/kate/openheader/plugin_kateopenheader.h
index 38c577f..980b5bc 100644
--- a/kate/openheader/plugin_kateopenheader.h
+++ b/kate/openheader/plugin_kateopenheader.h
@@ -30,7 +30,7 @@
class PluginKateOpenHeader : public Kate::Plugin, Kate::PluginViewInterface
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kate/snippets/csnippet.h b/kate/snippets/csnippet.h
index b453175..8f336b8 100644
--- a/kate/snippets/csnippet.h
+++ b/kate/snippets/csnippet.h
@@ -20,7 +20,7 @@
*/
class CSnippet : public TQObject {
- Q_OBJECT
+ TQ_OBJECT
public:
CSnippet(TQString sKey, TQString sValue, TQListViewItem *lvi, TQObject *parent = 0, const char *name = 0);
diff --git a/kate/snippets/plugin_katesnippets.h b/kate/snippets/plugin_katesnippets.h
index a2667af..154104b 100644
--- a/kate/snippets/plugin_katesnippets.h
+++ b/kate/snippets/plugin_katesnippets.h
@@ -30,7 +30,7 @@
class KatePluginSnippetsView : public CWidgetSnippets, public KXMLGUIClient {
- Q_OBJECT
+ TQ_OBJECT
friend class KatePluginSnippets;
@@ -62,7 +62,7 @@ public:
};
class KatePluginSnippets : public Kate::Plugin, Kate::PluginViewInterface {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kate/tabbarextension/plugin_katetabbarextension.h b/kate/tabbarextension/plugin_katetabbarextension.h
index 8cbd944..710eb97 100644
--- a/kate/tabbarextension/plugin_katetabbarextension.h
+++ b/kate/tabbarextension/plugin_katetabbarextension.h
@@ -60,7 +60,7 @@ class MyPtrList : public TQPtrList <KateTabBarButton>
class KatePluginFactory : public KLibFactory
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -80,7 +80,7 @@ class KatePluginFactory : public KLibFactory
*/
class KateTabBarButton: public TQPushButton
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -171,7 +171,7 @@ class KateTabBarButton: public TQPushButton
*/
class KateTabBarExtension : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -298,7 +298,7 @@ class KateTabBarExtension : public TQWidget
*/
class KateTabBarExtensionConfigPage : public Kate::PluginConfigPage
{
- Q_OBJECT
+ TQ_OBJECT
friend class KatePluginTabBarExtension;
@@ -333,7 +333,7 @@ class KateTabBarExtensionConfigPage : public Kate::PluginConfigPage
class KatePluginTabBarExtension : public Kate::Plugin, Kate::PluginViewInterface, Kate::PluginConfigInterfaceExtension
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kate/textfilter/plugin_katetextfilter.h b/kate/textfilter/plugin_katetextfilter.h
index 9d62794..f939e4d 100644
--- a/kate/textfilter/plugin_katetextfilter.h
+++ b/kate/textfilter/plugin_katetextfilter.h
@@ -32,7 +32,7 @@
class PluginKateTextFilter : public Kate::Plugin, public Kate::PluginViewInterface, public Kate::Command
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kate/xmlcheck/plugin_katexmlcheck.h b/kate/xmlcheck/plugin_katexmlcheck.h
index 0fac0b9..441d233 100644
--- a/kate/xmlcheck/plugin_katexmlcheck.h
+++ b/kate/xmlcheck/plugin_katexmlcheck.h
@@ -43,7 +43,7 @@
class PluginKateXMLCheckView : public TQListView, public KXMLGUIClient
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -72,7 +72,7 @@ class PluginKateXMLCheckView : public TQListView, public KXMLGUIClient
class PluginKateXMLCheck : public Kate::Plugin, Kate::PluginViewInterface
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kate/xmltools/plugin_katexmltools.h b/kate/xmltools/plugin_katexmltools.h
index ae0fd68..16c74e6 100644
--- a/kate/xmltools/plugin_katexmltools.h
+++ b/kate/xmltools/plugin_katexmltools.h
@@ -48,7 +48,7 @@
class PluginKateXMLTools : public Kate::Plugin, Kate::PluginViewInterface
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -136,7 +136,7 @@ class PluginKateXMLTools : public Kate::Plugin, Kate::PluginViewInterface
class InsertElement : public KDialogBase
{
- Q_OBJECT
+ TQ_OBJECT
public: