summaryrefslogtreecommitdiffstats
path: root/chalk/core
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 16:00:39 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 16:00:39 -0600
commit2f8f2b51ac004c1325dd8c3c2a24d3fec62450f0 (patch)
treeb2a50806758f457480546bccb342017d9c971bd8 /chalk/core
parent3464ad940b78776e534eded37c3ae842cae52ad8 (diff)
downloadkoffice-2f8f2b51ac004c1325dd8c3c2a24d3fec62450f0.tar.gz
koffice-2f8f2b51ac004c1325dd8c3c2a24d3fec62450f0.zip
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'chalk/core')
-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
17 files changed, 17 insertions, 17 deletions
diff --git a/chalk/core/kis_adjustment_layer.h b/chalk/core/kis_adjustment_layer.h
index b8b76437f..adc3f067d 100644
--- a/chalk/core/kis_adjustment_layer.h
+++ b/chalk/core/kis_adjustment_layer.h
@@ -38,7 +38,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 9a7f3bb0a..5ee21881b 100644
--- a/chalk/core/kis_brush.h
+++ b/chalk/core/kis_brush.h
@@ -54,7 +54,7 @@ enum enumBrushType {
class KRITACORE_EXPORT KisBrush : public KisResource {
typedef KisResource super;
Q_OBJECT
- TQ_OBJECT
+
public:
/// Construct brush to load filename later as brush
diff --git a/chalk/core/kis_filter.h b/chalk/core/kis_filter.h
index 193be6ced..32350fffd 100644
--- a/chalk/core/kis_filter.h
+++ b/chalk/core/kis_filter.h
@@ -45,7 +45,7 @@ class TQWidget;
*/
class KRITACORE_EXPORT KisFilter : public KisProgressSubject, public KShared {
Q_OBJECT
- TQ_OBJECT
+
public:
/**
diff --git a/chalk/core/kis_filter_config_widget.h b/chalk/core/kis_filter_config_widget.h
index f893b1388..4cafcbf12 100644
--- a/chalk/core/kis_filter_config_widget.h
+++ b/chalk/core/kis_filter_config_widget.h
@@ -29,7 +29,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 9ad9901d6..604e84c4a 100644
--- a/chalk/core/kis_filter_registry.h
+++ b/chalk/core/kis_filter_registry.h
@@ -34,7 +34,7 @@ class KRITACORE_EXPORT KisFilterRegistry : public TQObject, public KisGenericReg
{
Q_OBJECT
- TQ_OBJECT
+
public:
virtual ~KisFilterRegistry();
diff --git a/chalk/core/kis_gradient.h b/chalk/core/kis_gradient.h
index 50bc0fd8b..cbb2eb009 100644
--- a/chalk/core/kis_gradient.h
+++ b/chalk/core/kis_gradient.h
@@ -232,7 +232,7 @@ class KisGradientSegment {
class KisGradient : public KisResource {
typedef KisResource super;
Q_OBJECT
- TQ_OBJECT
+
public:
KisGradient(const TQString& file);
diff --git a/chalk/core/kis_group_layer.h b/chalk/core/kis_group_layer.h
index 58a3ddab9..bec982964 100644
--- a/chalk/core/kis_group_layer.h
+++ b/chalk/core/kis_group_layer.h
@@ -37,7 +37,7 @@ class KisGroupLayer : public KisLayer {
typedef KisLayer super;
Q_OBJECT
- TQ_OBJECT
+
public:
KisGroupLayer(KisImage *img, const TQString &name, TQ_UINT8 opacity);
diff --git a/chalk/core/kis_image.h b/chalk/core/kis_image.h
index 132505b29..b3cc4e5a2 100644
--- a/chalk/core/kis_image.h
+++ b/chalk/core/kis_image.h
@@ -60,7 +60,7 @@ class KisPerspectiveGrid;
class KRITACORE_EXPORT KisImage : public TQObject, public KShared {
Q_OBJECT
- TQ_OBJECT
+
public:
KisImage(KisUndoAdapter * adapter, TQ_INT32 width, TQ_INT32 height, KisColorSpace * colorSpace, const TQString& name);
diff --git a/chalk/core/kis_imagepipe_brush.h b/chalk/core/kis_imagepipe_brush.h
index eea581945..b43b950ad 100644
--- a/chalk/core/kis_imagepipe_brush.h
+++ b/chalk/core/kis_imagepipe_brush.h
@@ -101,7 +101,7 @@ public:
class KisImagePipeBrush : public KisBrush {
typedef KisBrush super;
Q_OBJECT
- TQ_OBJECT
+
public:
KisImagePipeBrush(const TQString& filename);
diff --git a/chalk/core/kis_layer.h b/chalk/core/kis_layer.h
index 2cff4bc99..eee2da12a 100644
--- a/chalk/core/kis_layer.h
+++ b/chalk/core/kis_layer.h
@@ -41,7 +41,7 @@ class KisGroupLayer;
class KRITACORE_EXPORT KisLayer : public TQObject, public KShared
{
Q_OBJECT
- TQ_OBJECT
+
public:
KisLayer(KisImage *img, const TQString &name, TQ_UINT8 opacity);
diff --git a/chalk/core/kis_math_toolbox.h b/chalk/core/kis_math_toolbox.h
index 8d5bef506..1909d218d 100644
--- a/chalk/core/kis_math_toolbox.h
+++ b/chalk/core/kis_math_toolbox.h
@@ -33,7 +33,7 @@
class KisMathToolbox : public TQObject {
Q_OBJECT
- TQ_OBJECT
+
public:
struct KisFloatRepresentation {
KisFloatRepresentation(uint nsize, uint ndepth) throw(std::bad_alloc ) : coeffs(new float[nsize*nsize*ndepth]) ,size(nsize), depth(ndepth)
diff --git a/chalk/core/kis_paint_device.h b/chalk/core/kis_paint_device.h
index 5e5dbb3f6..4fe9c8d5a 100644
--- a/chalk/core/kis_paint_device.h
+++ b/chalk/core/kis_paint_device.h
@@ -76,7 +76,7 @@ class KRITACORE_EXPORT KisPaintDevice
{
Q_OBJECT
- TQ_OBJECT
+
public:
diff --git a/chalk/core/kis_paint_layer.h b/chalk/core/kis_paint_layer.h
index 2cbd5e488..af8b1e4cf 100644
--- a/chalk/core/kis_paint_layer.h
+++ b/chalk/core/kis_paint_layer.h
@@ -29,7 +29,7 @@ class KisPaintLayer : public KisLayer, public KisLayerSupportsIndirectPainting {
typedef KisLayer super;
Q_OBJECT
- TQ_OBJECT
+
public:
KisPaintLayer(KisImage *img, const TQString& name, TQ_UINT8 opacity, KisPaintDeviceSP dev);
diff --git a/chalk/core/kis_paintop_registry.h b/chalk/core/kis_paintop_registry.h
index 338b9f01e..ee54988f7 100644
--- a/chalk/core/kis_paintop_registry.h
+++ b/chalk/core/kis_paintop_registry.h
@@ -38,7 +38,7 @@ class KRITACORE_EXPORT KisPaintOpRegistry : public TQObject, public KisGenericRe
{
Q_OBJECT
- TQ_OBJECT
+
public:
virtual ~KisPaintOpRegistry();
diff --git a/chalk/core/kis_palette.h b/chalk/core/kis_palette.h
index ed49849f2..4528c2bc7 100644
--- a/chalk/core/kis_palette.h
+++ b/chalk/core/kis_palette.h
@@ -51,7 +51,7 @@ 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 7d18f1f33..6209a4320 100644
--- a/chalk/core/kis_pattern.h
+++ b/chalk/core/kis_pattern.h
@@ -35,7 +35,7 @@ class KisPaintDevice;
class KisPattern : public KisResource {
typedef KisResource super;
Q_OBJECT
- TQ_OBJECT
+
public:
KisPattern(const TQString& file);
diff --git a/chalk/core/kis_resource.h b/chalk/core/kis_resource.h
index e07763e36..3c089f1c8 100644
--- a/chalk/core/kis_resource.h
+++ b/chalk/core/kis_resource.h
@@ -32,7 +32,7 @@
class KisResource : public TQObject {
typedef TQObject super;
Q_OBJECT
- TQ_OBJECT
+
public: