diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-12 15:09:22 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-14 10:52:46 +0200 |
commit | 9045d0bf35c9b4d5f6d8f791017124341abf8d4f (patch) | |
tree | 04c28c25dbabe5a9b1e2bb137abedcbdea6e31d9 /basctl/source/basicide/basides1.cxx | |
parent | 6d4f97b05b1bfe5aae395134b2dc35805c23b8c4 (diff) |
loplugin: defaultparams
Change-Id: I89796134a0cce33279ba7f02492857a656e8aee3
Diffstat (limited to 'basctl/source/basicide/basides1.cxx')
-rw-r--r-- | basctl/source/basicide/basides1.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basctl/source/basicide/basides1.cxx b/basctl/source/basicide/basides1.cxx index 1b8962ee206e..bcaa2a976a79 100644 --- a/basctl/source/basicide/basides1.cxx +++ b/basctl/source/basicide/basides1.cxx @@ -461,7 +461,7 @@ void Shell::ExecuteGlobal( SfxRequest& rReq ) { // adjust old value... if (SfxBindings* pBindings = GetBindingsPtr()) - pBindings->Invalidate(SID_BASICIDE_LIBSELECTOR, true, false); + pBindings->Invalidate(SID_BASICIDE_LIBSELECTOR, true); } } else if ( nSlot == SID_BASICIDE_LIBREMOVED ) @@ -639,7 +639,7 @@ void Shell::ExecuteGlobal( SfxRequest& rReq ) long nNewY = nLine * pTextEngine->GetCharHeight() - nVisHeight / 2; nNewY = ::std::min( nNewY, nMaxY ); pTextView->Scroll( 0, -( nNewY - nOldY ) ); - pTextView->ShowCursor( false, true ); + pTextView->ShowCursor( false ); pModWin->GetEditVScrollBar().SetThumbPos( pTextView->GetStartDocPos().Y() ); } sal_uInt16 nCol1 = 0, nCol2 = 0; |