summaryrefslogtreecommitdiffstats
path: root/ksvg
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:06:30 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:06:30 +0900
commitfce92533f86b9952f0c9cac6ca97f89c0fe6c39c (patch)
tree37fb0862ae75633f0e9881386ee5af0749d9f6cb /ksvg
parent1e28ffe410a56b9f72e0d14f38e3d57da54f6ed5 (diff)
downloadtdegraphics-fce92533f86b9952f0c9cac6ca97f89c0fe6c39c.tar.gz
tdegraphics-fce92533f86b9952f0c9cac6ca97f89c0fe6c39c.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ksvg')
-rw-r--r--ksvg/core/KSVGCanvas.h2
-rw-r--r--ksvg/core/KSVGLoader.h2
-rw-r--r--ksvg/core/KSVGReader.h2
-rw-r--r--ksvg/ecma/ksvg_window.h2
-rw-r--r--ksvg/impl/SVGDocumentImpl.h2
-rw-r--r--ksvg/impl/SVGImageElementImpl.h2
-rw-r--r--ksvg/impl/SVGScriptElementImpl.h2
-rw-r--r--ksvg/impl/SVGTimeScheduler.h2
-rw-r--r--ksvg/plugin/ksvg_factory.h4
-rw-r--r--ksvg/plugin/ksvg_plugin.h2
-rw-r--r--ksvg/plugin/ksvg_widget.h2
-rw-r--r--ksvg/plugin/svgcreator.h2
-rw-r--r--ksvg/test/external/SVGTestWidget.h2
-rw-r--r--ksvg/test/external/printnodetest.h2
14 files changed, 15 insertions, 15 deletions
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<SVGTimer *> 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);