diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-03-21 14:36:40 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-03-21 20:44:14 +0100 |
commit | 7ddf28fb4de78a4419e488b9ad4780bbb2bf9844 (patch) | |
tree | cb2f59b9841ad8df0e3cc0b0674a5bcda584a9ec /sd/source | |
parent | f8538ec4967b205b03f8e06fba86c6f09a679bc9 (diff) |
cid#1473853 Unchecked return value
Change-Id: I869e42e1c1651c9c435449a295e41a5f8889f4dc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112838
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/view/drviewse.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sd/source/ui/view/drviewse.cxx b/sd/source/ui/view/drviewse.cxx index d537dbdbb77e..b833b1d3b719 100644 --- a/sd/source/ui/view/drviewse.cxx +++ b/sd/source/ui/view/drviewse.cxx @@ -986,10 +986,8 @@ void DrawViewShell::FuSupport(SfxRequest& rReq) { vcl::KeyCode aKCode(KEY_DELETE); KeyEvent aKEvt( 0, aKCode); - //pOLV->PostKeyEvent(aKEvt); // We use SdrObjEditView to handle DEL for underflow handling - mpDrawView->KeyInput(aKEvt, nullptr); - + (void)mpDrawView->KeyInput(aKEvt, nullptr); } } else |