summaryrefslogtreecommitdiffstats
path: root/kolf/object.h
diff options
context:
space:
mode:
Diffstat (limited to 'kolf/object.h')
-rw-r--r--kolf/object.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/kolf/object.h b/kolf/object.h
index 1ef52c55..74464bb6 100644
--- a/kolf/object.h
+++ b/kolf/object.h
@@ -7,12 +7,13 @@
#include <tqstring.h>
#include <tqobject.h>
-class Object : public QObject
+class Object : public TQObject
{
Q_OBJECT
+ TQ_OBJECT
public:
- Object(TQObject *parent = 0, const char *name = 0) : TQObject(parent, name) { m_addOnNewHole = false; }
+ Object(TQObject *tqparent = 0, const char *name = 0) : TQObject(tqparent, name) { m_addOnNewHole = false; }
virtual TQCanvasItem *newObject(TQCanvas * /*canvas*/) { return 0; }
TQString name() { return m_name; }
TQString _name() { return m__name; }