From fce92533f86b9952f0c9cac6ca97f89c0fe6c39c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 20 Jul 2023 15:06:30 +0900 Subject: Replace Q_OBJECT with TQ_OBJECT Signed-off-by: Michele Calgaro --- ksvg/core/KSVGCanvas.h | 2 +- ksvg/core/KSVGLoader.h | 2 +- ksvg/core/KSVGReader.h | 2 +- ksvg/ecma/ksvg_window.h | 2 +- ksvg/impl/SVGDocumentImpl.h | 2 +- ksvg/impl/SVGImageElementImpl.h | 2 +- ksvg/impl/SVGScriptElementImpl.h | 2 +- ksvg/impl/SVGTimeScheduler.h | 2 +- ksvg/plugin/ksvg_factory.h | 4 ++-- ksvg/plugin/ksvg_plugin.h | 2 +- ksvg/plugin/ksvg_widget.h | 2 +- ksvg/plugin/svgcreator.h | 2 +- ksvg/test/external/SVGTestWidget.h | 2 +- ksvg/test/external/printnodetest.h | 2 +- 14 files changed, 15 insertions(+), 15 deletions(-) (limited to 'ksvg') diff --git a/ksvg/core/KSVGCanvas.h b/ksvg/core/KSVGCanvas.h index 70704ec1..75ac574c 100644 --- a/ksvg/core/KSVGCanvas.h +++ b/ksvg/core/KSVGCanvas.h @@ -58,7 +58,7 @@ class CanvasPaintServer; // Must be a TQObject to be able to be loaded by KLibLoader... class KSVGCanvas : public TQObject { -Q_OBJECT +TQ_OBJECT public: KSVGCanvas(unsigned int width, unsigned int height); diff --git a/ksvg/core/KSVGLoader.h b/ksvg/core/KSVGLoader.h index 10cd19ac..9e18c218 100644 --- a/ksvg/core/KSVGLoader.h +++ b/ksvg/core/KSVGLoader.h @@ -54,7 +54,7 @@ class SVGElementImpl; class SVGDocumentImpl; class KSVGLoader : public TQObject { -Q_OBJECT +TQ_OBJECT public: KSVGLoader(); diff --git a/ksvg/core/KSVGReader.h b/ksvg/core/KSVGReader.h index 6ca13337..226124b0 100644 --- a/ksvg/core/KSVGReader.h +++ b/ksvg/core/KSVGReader.h @@ -30,7 +30,7 @@ namespace KSVG class SVGDocumentImpl; class KSVGReader : public TQObject { -Q_OBJECT +TQ_OBJECT public: struct ParsingArgs diff --git a/ksvg/ecma/ksvg_window.h b/ksvg/ecma/ksvg_window.h index dc289191..f0fd2042 100644 --- a/ksvg/ecma/ksvg_window.h +++ b/ksvg/ecma/ksvg_window.h @@ -99,7 +99,7 @@ public: }; class WindowQObject : public TQObject { - Q_OBJECT + TQ_OBJECT public: WindowQObject(Window *w); diff --git a/ksvg/impl/SVGDocumentImpl.h b/ksvg/impl/SVGDocumentImpl.h index e9d12a0d..58babf96 100644 --- a/ksvg/impl/SVGDocumentImpl.h +++ b/ksvg/impl/SVGDocumentImpl.h @@ -71,7 +71,7 @@ class SVGDocumentImpl : public TQObject, public DOM::Document, public SVGDOMNodeBridge { -Q_OBJECT +TQ_OBJECT public: SVGDocumentImpl(bool anim = true, bool bFit = false, SVGImageElementImpl *parentImage = 0); diff --git a/ksvg/impl/SVGImageElementImpl.h b/ksvg/impl/SVGImageElementImpl.h index 96985440..c0858ba8 100644 --- a/ksvg/impl/SVGImageElementImpl.h +++ b/ksvg/impl/SVGImageElementImpl.h @@ -51,7 +51,7 @@ class SVGImageElementImpl : public TQObject, public SVGStylableImpl, public SVGTransformableImpl { -Q_OBJECT +TQ_OBJECT public: SVGImageElementImpl(DOM::ElementImpl *); diff --git a/ksvg/impl/SVGScriptElementImpl.h b/ksvg/impl/SVGScriptElementImpl.h index 2850af9d..d6c03cf9 100644 --- a/ksvg/impl/SVGScriptElementImpl.h +++ b/ksvg/impl/SVGScriptElementImpl.h @@ -41,7 +41,7 @@ class SVGScriptElementImpl : public TQObject, public SVGURIReferenceImpl, public SVGExternalResourcesRequiredImpl { -Q_OBJECT +TQ_OBJECT public: SVGScriptElementImpl(DOM::ElementImpl *); diff --git a/ksvg/impl/SVGTimeScheduler.h b/ksvg/impl/SVGTimeScheduler.h index cc897a57..605a5173 100644 --- a/ksvg/impl/SVGTimeScheduler.h +++ b/ksvg/impl/SVGTimeScheduler.h @@ -66,7 +66,7 @@ typedef TQValueList SVGTimerList; class SVGDocumentImpl; class SVGTimeScheduler : public TQObject { -Q_OBJECT +TQ_OBJECT public: SVGTimeScheduler(SVGDocumentImpl *doc); diff --git a/ksvg/plugin/ksvg_factory.h b/ksvg/plugin/ksvg_factory.h index 0141915e..3c19ca70 100644 --- a/ksvg/plugin/ksvg_factory.h +++ b/ksvg/plugin/ksvg_factory.h @@ -29,7 +29,7 @@ class TDEInstance; class KSVGPluginFactory : public KParts::Factory { -Q_OBJECT +TQ_OBJECT public: KSVGPluginFactory(TQObject *parent = 0, const char *name = 0); @@ -46,7 +46,7 @@ private: class KSVGPluginBrowserExtension : public KParts::BrowserExtension { -Q_OBJECT +TQ_OBJECT friend class KSVGPlugin; diff --git a/ksvg/plugin/ksvg_plugin.h b/ksvg/plugin/ksvg_plugin.h index 7097f728..de35bd62 100644 --- a/ksvg/plugin/ksvg_plugin.h +++ b/ksvg/plugin/ksvg_plugin.h @@ -34,7 +34,7 @@ namespace KSVG class KSVGPlugin : public KParts::ReadOnlyPart { -Q_OBJECT +TQ_OBJECT public: KSVGPlugin(TQWidget *parentWidget, const char *wname, TQObject *parent, const char *name, unsigned int width = 0, unsigned int height = 0); diff --git a/ksvg/plugin/ksvg_widget.h b/ksvg/plugin/ksvg_widget.h index eadc57a7..e2c194b3 100644 --- a/ksvg/plugin/ksvg_widget.h +++ b/ksvg/plugin/ksvg_widget.h @@ -30,7 +30,7 @@ class KSVGPlugin; class KSVGWidget : public TQWidget { -Q_OBJECT +TQ_OBJECT public: KSVGWidget(KSVGPlugin *part, TQWidget *parent, const char *name); diff --git a/ksvg/plugin/svgcreator.h b/ksvg/plugin/svgcreator.h index f788895b..faf5b308 100644 --- a/ksvg/plugin/svgcreator.h +++ b/ksvg/plugin/svgcreator.h @@ -26,7 +26,7 @@ class SVGCreator : public TQObject, public ThumbCreator { - Q_OBJECT + TQ_OBJECT public: SVGCreator(); diff --git a/ksvg/test/external/SVGTestWidget.h b/ksvg/test/external/SVGTestWidget.h index 0e7cb478..f1fae4fe 100644 --- a/ksvg/test/external/SVGTestWidget.h +++ b/ksvg/test/external/SVGTestWidget.h @@ -8,7 +8,7 @@ class SVGTestWidget : public TQWidget { -Q_OBJECT +TQ_OBJECT public: SVGTestWidget(const KURL &url); diff --git a/ksvg/test/external/printnodetest.h b/ksvg/test/external/printnodetest.h index 39903b75..f42e93ad 100644 --- a/ksvg/test/external/printnodetest.h +++ b/ksvg/test/external/printnodetest.h @@ -10,7 +10,7 @@ namespace KSVG class SVGDocument; class Worker : public TQObject { -Q_OBJECT +TQ_OBJECT public: Worker(const KURL &url); -- cgit v1.2.1