diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-07 21:14:06 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-07 21:14:06 +0000 |
commit | afbfdc507bfaafc8824a9808311d57a9ece87510 (patch) | |
tree | 47be45bbd69c321ce79e14b683e59318748be9cb /karbon/tools/vselecttool.cc | |
parent | 880d042b2902fae8007f202dd35ad9330499867b (diff) | |
download | koffice-afbfdc507bfaafc8824a9808311d57a9ece87510.tar.gz koffice-afbfdc507bfaafc8824a9808311d57a9ece87510.zip |
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'karbon/tools/vselecttool.cc')
-rw-r--r-- | karbon/tools/vselecttool.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/karbon/tools/vselecttool.cc b/karbon/tools/vselecttool.cc index 0609d772..751c0ebe 100644 --- a/karbon/tools/vselecttool.cc +++ b/karbon/tools/vselecttool.cc @@ -91,7 +91,7 @@ VSelectTool::activate() view()->part()->document().selection()->setSelectObjects(); view()->part()->document().selection()->setState( VObject::selected ); view()->part()->document().selection()->selectNodes(); - view()->tqrepaintAll( view()->part()->document().selection()->boundingBox() ); + view()->repaintAll( view()->part()->document().selection()->boundingBox() ); updateStatusBar(); } @@ -190,7 +190,7 @@ VSelectTool::mouseButtonPress() // undraw selection bounding box view()->part()->document().selection()->setState( VObject::edit ); - view()->tqrepaintAll( rect ); + view()->repaintAll( rect ); view()->part()->document().selection()->setState( VObject::selected ); draw(); @@ -208,7 +208,7 @@ VSelectTool::rightMouseButtonPress() // undraw selection bounding box view()->part()->document().selection()->setState( VObject::edit ); - view()->tqrepaintAll( view()->part()->document().selection()->boundingBox() ); + view()->repaintAll( view()->part()->document().selection()->boundingBox() ); view()->part()->document().selection()->setState( VObject::selected ); draw(); @@ -238,7 +238,7 @@ VSelectTool::rightMouseButtonRelease() if( selector.visit( view()->part()->document() ) ) view()->part()->document().selection()->take( *newSelection.last() ); - view()->part()->tqrepaintAllViews( view()->part()->document().selection()->boundingBox() ); + view()->part()->repaintAllViews( view()->part()->document().selection()->boundingBox() ); view()->selectionChanged(); updateStatusBar(); @@ -300,7 +300,7 @@ VSelectTool::mouseButtonRelease() view()->part()->document().selection()->append( newSelection.last() ); } - view()->part()->tqrepaintAllViews( view()->part()->document().selection()->boundingBox() ); + view()->part()->repaintAllViews( view()->part()->document().selection()->boundingBox() ); view()->selectionChanged(); updateStatusBar(); @@ -322,7 +322,7 @@ VSelectTool::mouseDragRelease() view()->part()->document().selection()->append( selRect ); else view()->part()->document().selection()->take( selRect ); - view()->part()->tqrepaintAllViews( selRect ); + view()->part()->repaintAllViews( selRect ); } else if( m_state == moving ) { @@ -399,7 +399,7 @@ VSelectTool::keyReleased( TQt::Key key ) } if( view() ) - view()->tqrepaintAll( selection->boundingBox() ); + view()->repaintAll( selection->boundingBox() ); return true; } @@ -476,7 +476,7 @@ VSelectTool::cancel() { draw(); m_state = normal; - view()->tqrepaintAll( view()->part()->document().selection()->boundingBox() ); + view()->repaintAll( view()->part()->document().selection()->boundingBox() ); } } |