summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrAutoformObject.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:38:41 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:38:41 -0600
commitf0de9e167e289ab7dc33e57f077c1f04ec7c68c8 (patch)
tree1fc538e179833e62caec21956bfe47a252be5a72 /kpresenter/KPrAutoformObject.cpp
parent11191ef0b9908604d1d7aaca382b011ef22c454c (diff)
downloadkoffice-f0de9e167e289ab7dc33e57f077c1f04ec7c68c8.tar.gz
koffice-f0de9e167e289ab7dc33e57f077c1f04ec7c68c8.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'kpresenter/KPrAutoformObject.cpp')
-rw-r--r--kpresenter/KPrAutoformObject.cpp12
1 files changed, 6 insertions, 6 deletions
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<ATFInterpreter &>( 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;
}