summaryrefslogtreecommitdiff
path: root/include/vcl/keycod.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-09-01 15:03:04 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-09-02 12:38:48 +0200
commit44fd4f1aacdd9a77fd4f5d2d1d300d3c73c35861 (patch)
tree4d132d7aac150f33cd21dfaa841b8e3d154a8013 /include/vcl/keycod.hxx
parent56b3c7ca9b50c0f6dcca2e6c4a3312deb46ec647 (diff)
KeyFuncType::REPEAT is just a bare KEY_REPEAT case
the one use of it in SdrView::KeyInput already has a handler for KEY_REPEAT in its default branch, so we can drop KeyFuncType::REPEAT Change-Id: I6dd7612ab551baf3dfdccf0179b3efadfb7659ad Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101876 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/vcl/keycod.hxx')
-rw-r--r--include/vcl/keycod.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/keycod.hxx b/include/vcl/keycod.hxx
index 6219897b55cb..8da99ba7ccb9 100644
--- a/include/vcl/keycod.hxx
+++ b/include/vcl/keycod.hxx
@@ -28,7 +28,7 @@ namespace vcl { class Window; }
enum class KeyFuncType : sal_Int32 { DONTKNOW,
CUT, COPY, PASTE, UNDO,
- REDO, DELETE, REPEAT };
+ REDO, DELETE };
namespace vcl
{