diff options
Diffstat (limited to 'kdgantt/KDGanttViewTaskLink.cpp')
-rw-r--r-- | kdgantt/KDGanttViewTaskLink.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kdgantt/KDGanttViewTaskLink.cpp b/kdgantt/KDGanttViewTaskLink.cpp index d0aa9bd00..51ed43f58 100644 --- a/kdgantt/KDGanttViewTaskLink.cpp +++ b/kdgantt/KDGanttViewTaskLink.cpp @@ -732,13 +732,13 @@ TQPtrList<KDGanttViewItem> KDGanttViewTaskLink::to() const Creates a DOM node that describes this task link. \param doc the DOM document to which the node belongs - \param tqparentElement the element into which to insert this node + \param parentElement the element into which to insert this node */ void KDGanttViewTaskLink::createNode( TQDomDocument& doc, - TQDomElement& tqparentElement ) + TQDomElement& parentElement ) { TQDomElement taskLinkElement = doc.createElement( "TaskLink" ); - tqparentElement.appendChild( taskLinkElement ); + parentElement.appendChild( taskLinkElement ); TQDomElement fromItemsElement = doc.createElement( "FromItems" ); taskLinkElement.appendChild( fromItemsElement ); |