diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:38:41 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:38:41 -0600 |
commit | f0de9e167e289ab7dc33e57f077c1f04ec7c68c8 (patch) | |
tree | 1fc538e179833e62caec21956bfe47a252be5a72 /karbon/karbon_view.cc | |
parent | 11191ef0b9908604d1d7aaca382b011ef22c454c (diff) | |
download | koffice-f0de9e167e289ab7dc33e57f077c1f04ec7c68c8.tar.gz koffice-f0de9e167e289ab7dc33e57f077c1f04ec7c68c8.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'karbon/karbon_view.cc')
-rw-r--r-- | karbon/karbon_view.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/karbon/karbon_view.cc b/karbon/karbon_view.cc index 79192129..10df9e02 100644 --- a/karbon/karbon_view.cc +++ b/karbon/karbon_view.cc @@ -769,7 +769,7 @@ KarbonView::viewModeChanged() void KarbonView::setZoomAt( double zoom, const KoPoint &p ) { - TQString zoomText = TQString( "%1%" ).tqarg( zoom * 100.0, 0, 'f', 2 ); + TQString zoomText = TQString( "%1%" ).arg( zoom * 100.0, 0, 'f', 2 ); TQStringList stl = m_zoomAction->items(); if( stl.first() == "25%" ) { @@ -1171,7 +1171,7 @@ KarbonView::mouseEvent( TQMouseEvent* event, const KoPoint &p ) xy.setX(KoUnit::toUserValue(xy.x(), part()->unit())); xy.setY(KoUnit::toUserValue(xy.y(), part()->unit())); - m_cursorCoords->setText( TQString( "%1, %2" ).tqarg(KGlobal::_locale->formatNumber(xy.x(), 2)).tqarg(KGlobal::_locale->formatNumber(xy.y(), 2)) ); + m_cursorCoords->setText( TQString( "%1, %2" ).arg(KGlobal::_locale->formatNumber(xy.x(), 2)).arg(KGlobal::_locale->formatNumber(xy.y(), 2)) ); if( toolController() ) return toolController()->mouseEvent( event, p ); @@ -1444,9 +1444,9 @@ KarbonView::repaintAll( const KoRect &r ) } void -KarbonView::repaintAll( bool tqrepaint ) +KarbonView::repaintAll( bool repaint ) { - m_canvas->repaintAll( tqrepaint ); + m_canvas->repaintAll( repaint ); } void KarbonView::setPos( const KoPoint& p ) |