diff options
Diffstat (limited to 'kchart/kdchart/KDChartCustomBox.cpp')
-rw-r--r-- | kchart/kdchart/KDChartCustomBox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kchart/kdchart/KDChartCustomBox.cpp b/kchart/kdchart/KDChartCustomBox.cpp index d500356d..9b4d7855 100644 --- a/kchart/kdchart/KDChartCustomBox.cpp +++ b/kchart/kdchart/KDChartCustomBox.cpp @@ -347,12 +347,12 @@ qDebug("pdWidth: %i box myRect w: %i h %i",pdWidth,myRect.width(),myRect.hei void KDChartCustomBox::createCustomBoxNode( TQDomDocument& document, - TQDomNode& tqparent, + TQDomNode& parent, const TQString& elementName, const KDChartCustomBox* custombox ) { TQDomElement customBoxElement = document.createElement( elementName ); - tqparent.appendChild( customBoxElement ); + parent.appendChild( customBoxElement ); KDXML::createIntNode( document, customBoxElement, "Rotation", custombox->_rotation ); KDXML::createStringNode( document, customBoxElement, "ContentText", custombox->_content.text() ); |