From f0de9e167e289ab7dc33e57f077c1f04ec7c68c8 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 19 Dec 2011 11:38:41 -0600 Subject: Remove additional unneeded tq method conversions --- kpresenter/KPrAutoformObject.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'kpresenter/KPrAutoformObject.cpp') diff --git a/kpresenter/KPrAutoformObject.cpp b/kpresenter/KPrAutoformObject.cpp index 60c5cdcb..90a1eeba 100644 --- a/kpresenter/KPrAutoformObject.cpp +++ b/kpresenter/KPrAutoformObject.cpp @@ -80,8 +80,8 @@ bool KPrAutoformObject::saveOasisObjectAttributes( KPOasisSaveContext &sc ) cons kdDebug(33001) << "bool KPrAutoformObject::saveOasisObjectAttributes()" << endl; TQSize size( int( ext.width() * 100 ), int( ext.height() * 100 ) ); - sc.xmlWriter.addAttribute( "svg:viewBox", TQString( "0 0 %1 %2" ).tqarg( size.width() ) - .tqarg( size.height() ) ); + sc.xmlWriter.addAttribute( "svg:viewBox", TQString( "0 0 %1 %2" ).arg( size.width() ) + .arg( size.height() ) ); TQPointArray points = const_cast( atfInterp ).getPointArray( size.width(), size.height() ); @@ -93,14 +93,14 @@ bool KPrAutoformObject::saveOasisObjectAttributes( KPOasisSaveContext &sc ) cons --pointCount; TQString d; - d += TQString( "M%1 %2" ).tqarg( points.at(pos).x() ) - .tqarg( points.at(pos).y() ); + d += TQString( "M%1 %2" ).arg( points.at(pos).x() ) + .arg( points.at(pos).y() ); ++pos; while ( pos < pointCount ) { - d += TQString( "L%1 %2" ).tqarg( points.at( pos ).x() ) - .tqarg( points.at( pos ).y() ); + d += TQString( "L%1 %2" ).arg( points.at( pos ).x() ) + .arg( points.at( pos ).y() ); ++pos; } -- cgit v1.2.1