summaryrefslogtreecommitdiffstats
path: root/chalk/plugins/tools/defaulttools
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 13:37:04 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-22 10:29:56 +0900
commitef14fba42c78a96d905c42632a62dc11f353b1c3 (patch)
treead32afdaaa32b215fe8b9be49fbf578d30a556d3 /chalk/plugins/tools/defaulttools
parent8b5a8460b388924f71bef71fc0dc4862e8c146d2 (diff)
downloadkoffice-ef14fba42c78a96d905c42632a62dc11f353b1c3.tar.gz
koffice-ef14fba42c78a96d905c42632a62dc11f353b1c3.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit cb59219281a9666896ee96b02a487bbc0206082d)
Diffstat (limited to 'chalk/plugins/tools/defaulttools')
-rw-r--r--chalk/plugins/tools/defaulttools/default_tools.h2
-rw-r--r--chalk/plugins/tools/defaulttools/kis_tool_brush.h2
-rw-r--r--chalk/plugins/tools/defaulttools/kis_tool_colorpicker.h2
-rw-r--r--chalk/plugins/tools/defaulttools/kis_tool_duplicate.h2
-rw-r--r--chalk/plugins/tools/defaulttools/kis_tool_ellipse.h2
-rw-r--r--chalk/plugins/tools/defaulttools/kis_tool_fill.h2
-rw-r--r--chalk/plugins/tools/defaulttools/kis_tool_gradient.h2
-rw-r--r--chalk/plugins/tools/defaulttools/kis_tool_line.h2
-rw-r--r--chalk/plugins/tools/defaulttools/kis_tool_move.h2
-rw-r--r--chalk/plugins/tools/defaulttools/kis_tool_pan.h2
-rw-r--r--chalk/plugins/tools/defaulttools/kis_tool_rectangle.h2
-rw-r--r--chalk/plugins/tools/defaulttools/kis_tool_text.h2
-rw-r--r--chalk/plugins/tools/defaulttools/kis_tool_zoom.h2
13 files changed, 13 insertions, 13 deletions
diff --git a/chalk/plugins/tools/defaulttools/default_tools.h b/chalk/plugins/tools/defaulttools/default_tools.h
index dbf60d93..78ed1c31 100644
--- a/chalk/plugins/tools/defaulttools/default_tools.h
+++ b/chalk/plugins/tools/defaulttools/default_tools.h
@@ -33,7 +33,7 @@
*/
class DefaultTools : public KParts::Plugin
{
- Q_OBJECT
+ TQ_OBJECT
public:
DefaultTools(TQObject *parent, const char *name, const TQStringList &);
diff --git a/chalk/plugins/tools/defaulttools/kis_tool_brush.h b/chalk/plugins/tools/defaulttools/kis_tool_brush.h
index bd932ae5..de0d4b8c 100644
--- a/chalk/plugins/tools/defaulttools/kis_tool_brush.h
+++ b/chalk/plugins/tools/defaulttools/kis_tool_brush.h
@@ -34,7 +34,7 @@ class TQCheckBox;
class TQGridLayout;
class KRITACORE_EXPORT KisToolBrush : public KisToolFreehand {
- Q_OBJECT
+ TQ_OBJECT
typedef KisToolFreehand super;
diff --git a/chalk/plugins/tools/defaulttools/kis_tool_colorpicker.h b/chalk/plugins/tools/defaulttools/kis_tool_colorpicker.h
index e7960fd3..0ca3f848 100644
--- a/chalk/plugins/tools/defaulttools/kis_tool_colorpicker.h
+++ b/chalk/plugins/tools/defaulttools/kis_tool_colorpicker.h
@@ -30,7 +30,7 @@ class KisPalette;
class KisToolColorPicker : public KisToolNonPaint {
- Q_OBJECT
+ TQ_OBJECT
typedef KisToolNonPaint super;
diff --git a/chalk/plugins/tools/defaulttools/kis_tool_duplicate.h b/chalk/plugins/tools/defaulttools/kis_tool_duplicate.h
index a7fd92df..2c1c40df 100644
--- a/chalk/plugins/tools/defaulttools/kis_tool_duplicate.h
+++ b/chalk/plugins/tools/defaulttools/kis_tool_duplicate.h
@@ -33,7 +33,7 @@ class KIntNumInput;
class KisToolDuplicate : public KisToolFreehand {
typedef KisToolFreehand super;
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/plugins/tools/defaulttools/kis_tool_ellipse.h b/chalk/plugins/tools/defaulttools/kis_tool_ellipse.h
index 09311a30..a080a783 100644
--- a/chalk/plugins/tools/defaulttools/kis_tool_ellipse.h
+++ b/chalk/plugins/tools/defaulttools/kis_tool_ellipse.h
@@ -32,7 +32,7 @@ class KisRect;
class KisToolEllipse : public KisToolShape {
typedef KisToolShape super;
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/plugins/tools/defaulttools/kis_tool_fill.h b/chalk/plugins/tools/defaulttools/kis_tool_fill.h
index 09df0851..e6fbd5f0 100644
--- a/chalk/plugins/tools/defaulttools/kis_tool_fill.h
+++ b/chalk/plugins/tools/defaulttools/kis_tool_fill.h
@@ -36,7 +36,7 @@ class TDEActionCollection;
class KisToolFill : public KisToolPaint {
typedef KisToolPaint super;
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/plugins/tools/defaulttools/kis_tool_gradient.h b/chalk/plugins/tools/defaulttools/kis_tool_gradient.h
index f5b6130f..36803177 100644
--- a/chalk/plugins/tools/defaulttools/kis_tool_gradient.h
+++ b/chalk/plugins/tools/defaulttools/kis_tool_gradient.h
@@ -46,7 +46,7 @@ class TQCheckBox;
class KisToolGradient : public KisToolPaint {
- Q_OBJECT
+ TQ_OBJECT
typedef KisToolPaint super;
diff --git a/chalk/plugins/tools/defaulttools/kis_tool_line.h b/chalk/plugins/tools/defaulttools/kis_tool_line.h
index d401a797..50dc254d 100644
--- a/chalk/plugins/tools/defaulttools/kis_tool_line.h
+++ b/chalk/plugins/tools/defaulttools/kis_tool_line.h
@@ -38,7 +38,7 @@ class TQWidget;
class KisToolLine : public KisToolPaint {
- Q_OBJECT
+ TQ_OBJECT
typedef KisToolPaint super;
diff --git a/chalk/plugins/tools/defaulttools/kis_tool_move.h b/chalk/plugins/tools/defaulttools/kis_tool_move.h
index 59cf735d..c79d47c1 100644
--- a/chalk/plugins/tools/defaulttools/kis_tool_move.h
+++ b/chalk/plugins/tools/defaulttools/kis_tool_move.h
@@ -32,7 +32,7 @@ class TQTimer;
class KisToolMove : public KisToolNonPaint {
typedef KisToolNonPaint super;
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/plugins/tools/defaulttools/kis_tool_pan.h b/chalk/plugins/tools/defaulttools/kis_tool_pan.h
index e6bbc91e..7329b629 100644
--- a/chalk/plugins/tools/defaulttools/kis_tool_pan.h
+++ b/chalk/plugins/tools/defaulttools/kis_tool_pan.h
@@ -31,7 +31,7 @@ class KRITATOOL_EXPORT KisToolPan : public KisToolNonPaint
{
typedef KisToolNonPaint super;
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/plugins/tools/defaulttools/kis_tool_rectangle.h b/chalk/plugins/tools/defaulttools/kis_tool_rectangle.h
index dc56f9e2..42f31705 100644
--- a/chalk/plugins/tools/defaulttools/kis_tool_rectangle.h
+++ b/chalk/plugins/tools/defaulttools/kis_tool_rectangle.h
@@ -37,7 +37,7 @@ class KisPainter;
class KisToolRectangle : public KisToolShape {
typedef KisToolShape super;
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/plugins/tools/defaulttools/kis_tool_text.h b/chalk/plugins/tools/defaulttools/kis_tool_text.h
index 9acd2465..26981107 100644
--- a/chalk/plugins/tools/defaulttools/kis_tool_text.h
+++ b/chalk/plugins/tools/defaulttools/kis_tool_text.h
@@ -33,7 +33,7 @@ class KSqueezedTextLabel;
class KisToolText : public KisToolPaint {
typedef KisToolPaint super;
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/plugins/tools/defaulttools/kis_tool_zoom.h b/chalk/plugins/tools/defaulttools/kis_tool_zoom.h
index ca084ca3..9e65f574 100644
--- a/chalk/plugins/tools/defaulttools/kis_tool_zoom.h
+++ b/chalk/plugins/tools/defaulttools/kis_tool_zoom.h
@@ -32,7 +32,7 @@ class KisCanvasSubject;
class KisToolZoom : public KisToolNonPaint {
typedef KisToolNonPaint super;
- Q_OBJECT
+ TQ_OBJECT
public: