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/dockers | |
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/dockers')
-rw-r--r-- | karbon/dockers/vcolordocker.cc | 4 | ||||
-rw-r--r-- | karbon/dockers/vdocumentdocker.cc | 12 | ||||
-rw-r--r-- | karbon/dockers/vtransformdocker.cc | 10 |
3 files changed, 13 insertions, 13 deletions
diff --git a/karbon/dockers/vcolordocker.cc b/karbon/dockers/vcolordocker.cc index b574bec0..0babda00 100644 --- a/karbon/dockers/vcolordocker.cc +++ b/karbon/dockers/vcolordocker.cc @@ -139,7 +139,7 @@ void VColorDocker::updateFgColor(const TQColor &c) if( VOldObjectList == VNewObjectList ) { m_strokeCmd->changeStroke(v); - m_part->tqrepaintAllViews(); + m_part->repaintAllViews(); } else { @@ -187,7 +187,7 @@ void VColorDocker::updateBgColor(const TQColor &c) if( VOldObjectList == VNewObjectList ) { m_fillCmd->changeFill(VFill(v)); - m_part->tqrepaintAllViews(); + m_part->repaintAllViews(); } else { diff --git a/karbon/dockers/vdocumentdocker.cc b/karbon/dockers/vdocumentdocker.cc index b63ae9ae..84ed5200 100644 --- a/karbon/dockers/vdocumentdocker.cc +++ b/karbon/dockers/vdocumentdocker.cc @@ -680,7 +680,7 @@ VLayersTab::itemClicked( TQListViewItem* item, const TQPoint &, int col ) updateChildItems( layerItem ); - m_view->part()->tqrepaintAllViews(); + m_view->part()->repaintAllViews(); } } else @@ -708,7 +708,7 @@ VLayersTab::itemClicked( TQListViewItem* item, const TQPoint &, int col ) if( dynamic_cast<VGroup*>( objectItem->object() ) ) updateChildItems( objectItem ); - m_view->part()->tqrepaintAllViews(); + m_view->part()->repaintAllViews(); } } } @@ -745,7 +745,7 @@ VLayersTab::selectionChangedFromList() } m_view->selectionChanged(); - m_view->part()->tqrepaintAllViews(); + m_view->part()->repaintAllViews(); } void @@ -926,7 +926,7 @@ VLayersTab::deleteItem() if( cmd ) { updatePreviews(); - m_view->part()->tqrepaintAllViews(); + m_view->part()->repaintAllViews(); } } // VLayersTab::deleteItem @@ -1297,9 +1297,9 @@ VHistoryTab::commandExecuted( VCommand* command ) } if ( found ) { - m_history->tqrepaintItem( item ); + m_history->repaintItem( item ); if ( item->tqparent() ) - m_history->tqrepaintItem( item->tqparent() ); + m_history->repaintItem( item->tqparent() ); m_history->ensureItemVisible( item ); } } // VHistoryTab::commandExecuted diff --git a/karbon/dockers/vtransformdocker.cc b/karbon/dockers/vtransformdocker.cc index 1616b47e..76c91de6 100644 --- a/karbon/dockers/vtransformdocker.cc +++ b/karbon/dockers/vtransformdocker.cc @@ -172,7 +172,7 @@ VTransformDocker::translate() VTranslateCmd *cmd = new VTranslateCmd( &m_view->part()->document(), newX-rect.x(), newY-rect.y(), false ); m_view->part()->addCommand( cmd ); } - m_part->tqrepaintAllViews( true ); + m_part->repaintAllViews( true ); } void @@ -190,7 +190,7 @@ VTransformDocker::scale() VScaleCmd *cmd = new VScaleCmd( &m_view->part()->document(), rect.topLeft(), newW/rect.width(), newH/rect.height(), false ); m_view->part()->addCommand( cmd ); } - m_part->tqrepaintAllViews( true ); + m_part->repaintAllViews( true ); } void @@ -219,7 +219,7 @@ VTransformDocker::shearX() shear /= double(rect.width()*0.5); VShearCmd *cmd = new VShearCmd( &m_view->part()->document(), rect.center(), shear, 0 ); m_view->part()->addCommand( cmd ); - m_part->tqrepaintAllViews( true ); + m_part->repaintAllViews( true ); disconnect( m_shearX, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( shearX() ) ); m_shearX->changeValue(0.0); connect( m_shearX, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( shearX() ) ); @@ -237,7 +237,7 @@ VTransformDocker::shearY() shear /= double(rect.height()*0.5); VShearCmd *cmd = new VShearCmd( &m_view->part()->document(), rect.center(), 0, shear ); m_view->part()->addCommand( cmd ); - m_part->tqrepaintAllViews( true ); + m_part->repaintAllViews( true ); disconnect( m_shearY, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( shearY() ) ); m_shearY->changeValue(0.0); connect( m_shearY, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( shearY() ) ); @@ -254,7 +254,7 @@ VTransformDocker::rotate() KoPoint center = m_view->part()->document().selection()->boundingBox().center(); VRotateCmd *cmd = new VRotateCmd( &m_view->part()->document(), center, angle ); m_view->part()->addCommand( cmd ); - m_part->tqrepaintAllViews( true ); + m_part->repaintAllViews( true ); disconnect( m_rotate, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( rotate() ) ); m_rotate->setValue(0.0); connect( m_rotate, TQT_SIGNAL( valueChanged( double ) ), this, TQT_SLOT( rotate() ) ); |