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