diff options
Diffstat (limited to 'karbon/core/vstroke.cc')
-rw-r--r-- | karbon/core/vstroke.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/karbon/core/vstroke.cc b/karbon/core/vstroke.cc index 0ec27fb2..d0cea9c7 100644 --- a/karbon/core/vstroke.cc +++ b/karbon/core/vstroke.cc @@ -117,7 +117,7 @@ VStroke::saveOasis( KoGenStyle &style ) const style.addProperty( "svg:stroke-color", TQColor( m_color ).name() ); style.addPropertyPt( "svg:stroke-width", m_lineWidth ); if( m_color.opacity() < 1 ) - style.addProperty( "svg:stroke-opacity", TQString( "%1%" ).tqarg( m_color.opacity() * 100. ) ); + style.addProperty( "svg:stroke-opacity", TQString( "%1%" ).arg( m_color.opacity() * 100. ) ); } else if( m_type == none ) style.addProperty( "draw:stroke", "none" ); |