summaryrefslogtreecommitdiffstats
path: root/sd
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-10-30 15:05:55 +0200
committerNoel Grandin <noel@peralex.com>2014-10-31 07:28:06 +0200
commit7eb519e92b4b50546f222e8d0219b21af8e6ea18 (patch)
tree4b07d675104f75c0c03a66d6bd227495a429775d /sd
parentfdo#84792 Correct the link for cmd/sc_square.png (diff)
downloadcore-7eb519e92b4b50546f222e8d0219b21af8e6ea18.tar.gz
core-7eb519e92b4b50546f222e8d0219b21af8e6ea18.zip
KEY_ALLMOD is the same as KEY_MOD
so just dump it Change-Id: I006045aea345e84ff1944fc1ed1daa94bd7bca61
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/func/fupoor.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/func/fupoor.cxx b/sd/source/ui/func/fupoor.cxx
index 66f6484607cf..c98211e1bcc5 100644
--- a/sd/source/ui/func/fupoor.cxx
+++ b/sd/source/ui/func/fupoor.cxx
@@ -435,7 +435,7 @@ bool FuPoor::KeyInput(const KeyEvent& rKEvt)
{
// The page-up key switches layers or pages depending on the
// modifier key.
- if ( ! rKEvt.GetKeyCode().GetAllModifier())
+ if ( ! rKEvt.GetKeyCode().GetModifier())
{
// With no modifier pressed we move to the previous
// slide.
@@ -482,7 +482,7 @@ bool FuPoor::KeyInput(const KeyEvent& rKEvt)
{
// The page-down key switches layers or pages depending on the
// modifier key.
- if ( ! rKEvt.GetKeyCode().GetAllModifier())
+ if ( ! rKEvt.GetKeyCode().GetModifier())
{
// With no modifier pressed we move to the next slide.
mpView->SdrEndTextEdit();