diff options
Diffstat (limited to 'kword/KWView.cpp')
-rw-r--r-- | kword/KWView.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kword/KWView.cpp b/kword/KWView.cpp index 751869eb..2651e6ad 100644 --- a/kword/KWView.cpp +++ b/kword/KWView.cpp @@ -1927,7 +1927,7 @@ void KWView::print( KPrinter &prt ) m_gui->canvasWidget()->setUpdatesEnabled(true); m_gui->canvasWidget()->viewport()->setCursor( ibeamCursor ); - m_doc->tqrepaintAllViews(); + m_doc->repaintAllViews(); if ( displayFieldCode ) { @@ -2630,7 +2630,7 @@ void KWView::adjustZOrderOfSelectedFrames(MoveFrameType moveType) { // we also need other framesets to notice the new frames on top. m_doc->updateAllFrames(); m_doc->tqlayout(); - m_doc->tqrepaintAllViews(); + m_doc->repaintAllViews(); } if(lowestZOrder != 10000 && m_doc->processingType() == KWDocument::WP) { @@ -2916,7 +2916,7 @@ void KWView::editMailMergeDataBase() KWMailMergeEditor *dia = new KWMailMergeEditor( this, m_doc->mailMergeDataBase() ); dia->exec(); // Don't know if we really need this so it's commented out (SL) - // m_gui->canvasWidget()->tqrepaintAll( FALSE ); + // m_gui->canvasWidget()->repaintAll( FALSE ); delete dia; #endif } @@ -3111,13 +3111,13 @@ void KWView::slotViewFormattingChars() { m_doc->setViewFormattingChars(m_actionViewFormattingChars->isChecked()); m_doc->tqlayout(); // Due to the different formatting when this option is activated - m_doc->tqrepaintAllViews(); + m_doc->repaintAllViews(); } void KWView::slotViewFrameBorders() { setViewFrameBorders(m_actionViewFrameBorders->isChecked()); - m_gui->canvasWidget()->tqrepaintAll(); + m_gui->canvasWidget()->repaintAll(); } void KWView::viewHeader() @@ -4127,7 +4127,7 @@ void KWView::insertFormula( TQMimeSource* source ) m_gui->canvasWidget()->editFrameSet( frameset ); frameset->setChanged(); - m_gui->canvasWidget()->tqrepaintChanged( frameset, true ); + m_gui->canvasWidget()->repaintChanged( frameset, true ); } } @@ -4585,7 +4585,7 @@ void KWView::frameStyleSelected( KWFrameStyle *sty ) globalCmd->execute(); } - m_gui->canvasWidget()->tqrepaintAll(); + m_gui->canvasWidget()->repaintAll(); m_gui->canvasWidget()->setFocus(); // the combo keeps focus...*/ // Adjust GUI @@ -4655,7 +4655,7 @@ void KWView::tableStyleSelected( KWTableStyle *sty ) globalCmd->execute(); } - m_gui->canvasWidget()->tqrepaintAll(); + m_gui->canvasWidget()->repaintAll(); m_gui->canvasWidget()->setFocus(); // the combo keeps focus...*/ // Adjust GUI @@ -5479,7 +5479,7 @@ void KWView::slotPageLayoutChanged( const KoPageLayout& tqlayout ) // above method, or any other way of changing the page tqlayout happens, // the rulers are updated in all views. viewMode()->setPageLayout( m_gui->getHorzRuler(), m_gui->getVertRuler(), tqlayout ); - m_gui->canvasWidget()->tqrepaintAll(); + m_gui->canvasWidget()->repaintAll(); } void KWView::newFirstIndent( double firstIndent ) @@ -5955,7 +5955,7 @@ void KWView::frameSelectedChanged() showSpacing( spacing ); } - m_gui->canvasWidget()->tqrepaintAll(false); + m_gui->canvasWidget()->repaintAll(false); } @@ -6315,7 +6315,7 @@ void KWView::viewGrid() m_doc->setShowGrid( m_actionViewShowGrid->isChecked() ); m_doc->setModified( true ); m_doc->updateGridButton(); - m_doc->tqrepaintAllViews(false); + m_doc->repaintAllViews(false); } void KWView::viewSnapToGrid() |