diff options
Diffstat (limited to 'kplato/kptnode.h')
-rw-r--r-- | kplato/kptnode.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kplato/kptnode.h b/kplato/kptnode.h index d6a6bbef..95d7c24b 100644 --- a/kplato/kptnode.h +++ b/kplato/kptnode.h @@ -59,8 +59,8 @@ class Node { public: enum ConstraintType { ASAP, ALAP, MustStartOn, MustFinishOn, StartNotEarlier, FinishNotLater, FixedInterval }; - Node(Node *tqparent = 0); - Node(Node &node, Node *tqparent = 0); + Node(Node *parent = 0); + Node(Node &node, Node *parent = 0); // Declare the class abstract @@ -374,7 +374,7 @@ public: virtual bool legalToLink(Node *, Node *) { return false; } /// Check if this node has any dependent child nodes virtual bool isEndNode() const; - /// Check if this node has any dependent tqparent nodes + /// Check if this node has any dependent parent nodes virtual bool isStartNode() const; virtual void clearProxyRelations() {} virtual void addParentProxyRelations(TQPtrList<Relation> &) {} @@ -477,11 +477,11 @@ public: /// Create a new schedule. Schedule *createSchedule(TQString name, Schedule::Type type, long id); /// Create a new schedule. - Schedule *createSchedule(Schedule *tqparent); + Schedule *createSchedule(Schedule *parent); /// Set deleted = onoff for schedule with id void setScheduleDeleted(long id, bool onoff); - /// Set tqparent schedule recursivly + /// Set parent schedule recursivly virtual void setParentSchedule(Schedule *sch); DateTime startTime() |