diff options
Diffstat (limited to 'karbon/shapes/vrectangle.cc')
-rw-r--r-- | karbon/shapes/vrectangle.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/karbon/shapes/vrectangle.cc b/karbon/shapes/vrectangle.cc index bb3512fd..bbeef50f 100644 --- a/karbon/shapes/vrectangle.cc +++ b/karbon/shapes/vrectangle.cc @@ -125,8 +125,8 @@ VRectangle::save( TQDomElement& element ) const me.setAttribute( "x", m_topLeft.x() ); me.setAttribute( "y", m_topLeft.y() ); - me.setAttribute( "width", TQString("%1pt").tqarg( m_width ) ); - me.setAttribute( "height", TQString("%1pt").tqarg( m_height ) ); + me.setAttribute( "width", TQString("%1pt").arg( m_width ) ); + me.setAttribute( "height", TQString("%1pt").arg( m_height ) ); me.setAttribute( "rx", m_rx ); me.setAttribute( "ry", m_ry ); |