summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-20 08:40:47 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-20 08:40:47 +0200
commit61358e8efb2989e1e7d338eaee700ec6d2a1e017 (patch)
treee89d55769af19997f373ab14f95bc062c0629943 /sw
parent97a27b1746286a62c4ac032683a4d9d3df5bd399 (diff)
Up/Down's bSelect param cannot be defaulted anyway
...because SwWrtShell inherits SwCrsrShell::Up/Down, which already default their first param. Change-Id: I62fa00c3e1e679dcb2e5bbd50f34cb9a6926b7b8
Diffstat (limited to 'sw')
-rw-r--r--sw/source/uibase/inc/wrtsh.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/inc/wrtsh.hxx b/sw/source/uibase/inc/wrtsh.hxx
index 421152791b11..b640061efdc4 100644
--- a/sw/source/uibase/inc/wrtsh.hxx
+++ b/sw/source/uibase/inc/wrtsh.hxx
@@ -191,8 +191,8 @@ typedef bool (SwWrtShell:: *FNSimpleMove)();
sal_uInt16 nCount, bool bBasicCall, bool bVisual = false );
bool Right ( sal_uInt16 nMode, bool bSelect,
sal_uInt16 nCount, bool bBasicCall, bool bVisual = false );
- bool Up ( bool bSelect = false, sal_uInt16 nCount = 1, bool bBasicCall = false );
- bool Down ( bool bSelect = false, sal_uInt16 nCount = 1, bool bBasicCall = false );
+ bool Up ( bool bSelect, sal_uInt16 nCount = 1, bool bBasicCall = false );
+ bool Down ( bool bSelect, sal_uInt16 nCount = 1, bool bBasicCall = false );
bool NxtWrd ( bool bSelect = false ) { return SimpleMove( &SwWrtShell::_NxtWrd, bSelect ); }
bool PrvWrd ( bool bSelect = false ) { return SimpleMove( &SwWrtShell::_PrvWrd, bSelect ); }