summaryrefslogtreecommitdiff
path: root/sw/source/uibase/shells/txtcrsr.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-19 17:51:46 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-19 17:51:46 +0200
commit3b7609446ba50b6181843ce05f48c100087f3006 (patch)
tree8d75eb6130056197ff31391a2891d4919ca0fcef /sw/source/uibase/shells/txtcrsr.cxx
parenta003d8c59d0324ab3f44ec608f473e654ce48902 (diff)
loplugin:defaultparams
Change-Id: Ib5b0e87064b6dcff03f6b77287a80ee2a03b8799
Diffstat (limited to 'sw/source/uibase/shells/txtcrsr.cxx')
-rw-r--r--sw/source/uibase/shells/txtcrsr.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/uibase/shells/txtcrsr.cxx b/sw/source/uibase/shells/txtcrsr.cxx
index 41c4d84aaf6c..6ed39e5740b8 100644
--- a/sw/source/uibase/shells/txtcrsr.cxx
+++ b/sw/source/uibase/shells/txtcrsr.cxx
@@ -104,10 +104,10 @@ void SwTextShell::ExecBasicMove(SfxRequest &rReq)
rSh.Right( CRSR_SKIP_CELLS, bSelect, 1, false, true );
break;
case FN_LINE_UP:
- rSh.Up( bSelect, 1 );
+ rSh.Up( bSelect );
break;
case FN_LINE_DOWN:
- rSh.Down( bSelect, 1 );
+ rSh.Down( bSelect );
break;
default:
OSL_FAIL("wrong Dispatcher");
@@ -415,7 +415,7 @@ void SwTextShell::ExecMoveMisc(SfxRequest &rReq)
bRet = rSh.GotoNxtPrvTOXMark( false );
break;
case FN_NEXT_TBLFML:
- bRet = rSh.GotoNxtPrvTableFormula( true );
+ bRet = rSh.GotoNxtPrvTableFormula();
break;
case FN_PREV_TBLFML:
bRet = rSh.GotoNxtPrvTableFormula( false );