summaryrefslogtreecommitdiffstats
path: root/chalk/core
diff options
context:
space:
mode:
Diffstat (limited to 'chalk/core')
-rwxr-xr-xchalk/core/createdcop.py2
-rw-r--r--chalk/core/kis_adjustment_layer.h2
-rw-r--r--chalk/core/kis_brush.h2
-rw-r--r--chalk/core/kis_filter.h2
-rw-r--r--chalk/core/kis_filter_config_widget.h2
-rw-r--r--chalk/core/kis_filter_registry.h2
-rw-r--r--chalk/core/kis_gradient.h2
-rw-r--r--chalk/core/kis_group_layer.h2
-rw-r--r--chalk/core/kis_image.h2
-rw-r--r--chalk/core/kis_imagepipe_brush.h2
-rw-r--r--chalk/core/kis_layer.h2
-rw-r--r--chalk/core/kis_math_toolbox.h2
-rw-r--r--chalk/core/kis_paint_device.h2
-rw-r--r--chalk/core/kis_paint_layer.h2
-rw-r--r--chalk/core/kis_paintop_registry.h2
-rw-r--r--chalk/core/kis_palette.h2
-rw-r--r--chalk/core/kis_pattern.h2
-rw-r--r--chalk/core/kis_resource.h2
18 files changed, 18 insertions, 18 deletions
diff --git a/chalk/core/createdcop.py b/chalk/core/createdcop.py
index cefe3fd87..002698186 100755
--- a/chalk/core/createdcop.py
+++ b/chalk/core/createdcop.py
@@ -96,7 +96,7 @@ def parseHeader(headerfile, classname):
line.startswith("*") or
line.startswith(classname) or
line.startswith("class") or
- line.startswith("Q_OBJECT") or
+ line.startswith("TQ_OBJECT") or
line.startswith("#") or
line.startswith("}") or
line.startswith("public Q_SLOTS:") or
diff --git a/chalk/core/kis_adjustment_layer.h b/chalk/core/kis_adjustment_layer.h
index adc3f067d..7bf3a7f84 100644
--- a/chalk/core/kis_adjustment_layer.h
+++ b/chalk/core/kis_adjustment_layer.h
@@ -37,7 +37,7 @@ class KisFilterConfiguration;
**/
class KRITACORE_EXPORT KisAdjustmentLayer : public KisLayer, public KisLayerSupportsIndirectPainting
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/core/kis_brush.h b/chalk/core/kis_brush.h
index 9e29c2321..df549ef5d 100644
--- a/chalk/core/kis_brush.h
+++ b/chalk/core/kis_brush.h
@@ -53,7 +53,7 @@ enum enumBrushType {
class KRITACORE_EXPORT KisBrush : public KisResource {
typedef KisResource super;
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/core/kis_filter.h b/chalk/core/kis_filter.h
index 599581bdd..78bda885a 100644
--- a/chalk/core/kis_filter.h
+++ b/chalk/core/kis_filter.h
@@ -44,7 +44,7 @@ class TQWidget;
* Basic interface of a Chalk filter.
*/
class KRITACORE_EXPORT KisFilter : public KisProgressSubject, public TDEShared {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/core/kis_filter_config_widget.h b/chalk/core/kis_filter_config_widget.h
index 4cafcbf12..30795ed3b 100644
--- a/chalk/core/kis_filter_config_widget.h
+++ b/chalk/core/kis_filter_config_widget.h
@@ -28,7 +28,7 @@
*/
class KisFilterConfigWidget : public TQWidget {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/core/kis_filter_registry.h b/chalk/core/kis_filter_registry.h
index 604e84c4a..b83cd8324 100644
--- a/chalk/core/kis_filter_registry.h
+++ b/chalk/core/kis_filter_registry.h
@@ -33,7 +33,7 @@ class TQStringList;
class KRITACORE_EXPORT KisFilterRegistry : public TQObject, public KisGenericRegistry<KisFilterSP>
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/core/kis_gradient.h b/chalk/core/kis_gradient.h
index 1fff95da5..fca6d3970 100644
--- a/chalk/core/kis_gradient.h
+++ b/chalk/core/kis_gradient.h
@@ -231,7 +231,7 @@ class KisGradientSegment {
class KisGradient : public KisResource {
typedef KisResource super;
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/core/kis_group_layer.h b/chalk/core/kis_group_layer.h
index bec982964..efbf9003d 100644
--- a/chalk/core/kis_group_layer.h
+++ b/chalk/core/kis_group_layer.h
@@ -36,7 +36,7 @@ class KisMergeVisitor;
class KisGroupLayer : public KisLayer {
typedef KisLayer super;
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/core/kis_image.h b/chalk/core/kis_image.h
index 553806ae2..307416ba3 100644
--- a/chalk/core/kis_image.h
+++ b/chalk/core/kis_image.h
@@ -59,7 +59,7 @@ class KisPaintLayer;
class KisPerspectiveGrid;
class KRITACORE_EXPORT KisImage : public TQObject, public TDEShared {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/core/kis_imagepipe_brush.h b/chalk/core/kis_imagepipe_brush.h
index 075071b94..2e9262135 100644
--- a/chalk/core/kis_imagepipe_brush.h
+++ b/chalk/core/kis_imagepipe_brush.h
@@ -100,7 +100,7 @@ public:
class KisImagePipeBrush : public KisBrush {
typedef KisBrush super;
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/core/kis_layer.h b/chalk/core/kis_layer.h
index 6f99ae681..7db26b6ed 100644
--- a/chalk/core/kis_layer.h
+++ b/chalk/core/kis_layer.h
@@ -40,7 +40,7 @@ class KisGroupLayer;
**/
class KRITACORE_EXPORT KisLayer : public TQObject, public TDEShared
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/core/kis_math_toolbox.h b/chalk/core/kis_math_toolbox.h
index f79b7b94b..a228accd1 100644
--- a/chalk/core/kis_math_toolbox.h
+++ b/chalk/core/kis_math_toolbox.h
@@ -32,7 +32,7 @@
#include <new>
class KisMathToolbox : public TQObject {
- Q_OBJECT
+ TQ_OBJECT
public:
struct KisFloatRepresentation {
diff --git a/chalk/core/kis_paint_device.h b/chalk/core/kis_paint_device.h
index 23ce651f3..e36abaf78 100644
--- a/chalk/core/kis_paint_device.h
+++ b/chalk/core/kis_paint_device.h
@@ -75,7 +75,7 @@ class KRITACORE_EXPORT KisPaintDevice
, public TDEShared
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/core/kis_paint_layer.h b/chalk/core/kis_paint_layer.h
index 5f2ba06de..2fe49e365 100644
--- a/chalk/core/kis_paint_layer.h
+++ b/chalk/core/kis_paint_layer.h
@@ -28,7 +28,7 @@
class KisPaintLayer : public KisLayer, public KisLayerSupportsIndirectPainting {
typedef KisLayer super;
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/core/kis_paintop_registry.h b/chalk/core/kis_paintop_registry.h
index ee54988f7..2066bc8ff 100644
--- a/chalk/core/kis_paintop_registry.h
+++ b/chalk/core/kis_paintop_registry.h
@@ -37,7 +37,7 @@ class KisInputDevice;
class KRITACORE_EXPORT KisPaintOpRegistry : public TQObject, public KisGenericRegistry<KisPaintOpFactorySP>
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/core/kis_palette.h b/chalk/core/kis_palette.h
index 2e842b52c..18ffd6b12 100644
--- a/chalk/core/kis_palette.h
+++ b/chalk/core/kis_palette.h
@@ -50,7 +50,7 @@ struct KisPaletteEntry {
class KisPalette : public KisResource {
typedef KisResource super;
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/core/kis_pattern.h b/chalk/core/kis_pattern.h
index 5c76d6c60..dc5b2a125 100644
--- a/chalk/core/kis_pattern.h
+++ b/chalk/core/kis_pattern.h
@@ -34,7 +34,7 @@ class KisPaintDevice;
class KisPattern : public KisResource {
typedef KisResource super;
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/chalk/core/kis_resource.h b/chalk/core/kis_resource.h
index 3c089f1c8..f06675a07 100644
--- a/chalk/core/kis_resource.h
+++ b/chalk/core/kis_resource.h
@@ -31,7 +31,7 @@
*/
class KisResource : public TQObject {
typedef TQObject super;
- Q_OBJECT
+ TQ_OBJECT
public: