From 0f2a9bb2139becbf353db792b22c13a5ded25a6a Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 11 Aug 2015 08:41:51 +0200 Subject: loplugin: defaultparams Change-Id: I2a1255c00a051b29381ec57c380eafb08c4900d9 --- editeng/source/outliner/outlvw.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'editeng/source/outliner/outlvw.cxx') diff --git a/editeng/source/outliner/outlvw.cxx b/editeng/source/outliner/outlvw.cxx index 1a9e10bf49c7..4a0d96ea5581 100644 --- a/editeng/source/outliner/outlvw.cxx +++ b/editeng/source/outliner/outlvw.cxx @@ -210,7 +210,7 @@ bool OutlinerView::PostKeyEvent( const KeyEvent& rKEvt, vcl::Window* pFrameWin ) ESelection aTmpSel(nTemp,0,nTemp,0); pEditView->SetSelection( aTmpSel ); } - pEditView->ShowCursor( true, true ); + pEditView->ShowCursor( true ); pOwner->UndoActionEnd( OLUNDO_INSERT ); bKeyProcessed = true; } @@ -228,7 +228,7 @@ bool OutlinerView::PostKeyEvent( const KeyEvent& rKEvt, vcl::Window* pFrameWin ) // Position the cursor ESelection aTmpSel(nTemp,0,nTemp,0); pEditView->SetSelection( aTmpSel ); - pEditView->ShowCursor( true, true ); + pEditView->ShowCursor( true ); pOwner->UndoActionEnd( OLUNDO_INSERT ); bKeyProcessed = true; } @@ -541,7 +541,7 @@ void OutlinerView::Indent( short nDiff ) pOwner->mnDepthChangeHdlPrevFlags = pPara->nFlags; pOwner->pHdlParagraph = pPara; - pOwner->ImplInitDepth( nPara, nNewDepth, true, false ); + pOwner->ImplInitDepth( nPara, nNewDepth, true ); pOwner->ImplCalcBulletText( nPara, false, false ); if ( pOwner->ImplGetOutlinerMode() == OUTLINERMODE_OUTLINEOBJECT ) @@ -668,7 +668,7 @@ void OutlinerView::InsertText( const OutlinerParaObject& rParaObj ) pOwner->UndoActionEnd( OLUNDO_INSERT ); - pEditView->ShowCursor( true, true ); + pEditView->ShowCursor( true ); } @@ -704,7 +704,7 @@ void OutlinerView::PasteSpecial() pEditView->SetEditEngineUpdateMode( true ); pOwner->UndoActionEnd( OLUNDO_INSERT ); - pEditView->ShowCursor( true, true ); + pEditView->ShowCursor( true ); } } @@ -1181,7 +1181,7 @@ void OutlinerView::RemoveAttribs( bool bRemoveParaAttribs, sal_uInt16 nWhich, bo for ( sal_Int32 nPara = aSel.nStartPara; nPara <= aSel.nEndPara; nPara++ ) { Paragraph* pPara = pOwner->pParaList->GetParagraph( nPara ); - pOwner->ImplInitDepth( nPara, pPara->GetDepth(), false, false ); + pOwner->ImplInitDepth( nPara, pPara->GetDepth(), false ); } } pOwner->UndoActionEnd( OLUNDO_ATTR ); -- cgit v1.2.3