diff options
author | Noel <noelgrandin@gmail.com> | 2020-11-04 20:04:26 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-11-05 07:52:48 +0100 |
commit | 4388ce8614ee720244697e44c1f056b597273913 (patch) | |
tree | 71bcf38fe8775bbb10605203657d421125f0e204 /vcl/source/window | |
parent | b45b18cec479cf89241b8d5b11a66f22f9fe3165 (diff) |
INPUTENABLE is unused
since
commit be3b1a8393ca3e77f31bea5d9caa7271fd53e9e4
Author: Caolán McNamara <caolanm@redhat.com>
Date: Mon Aug 17 17:28:58 2020 +0100
weld OAppDetailPageHelper
Change-Id: I97afdbd536c587a360b8f72b9faca71e8fa32ba3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105306
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/window')
-rw-r--r-- | vcl/source/window/window.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index 2d9cfd5966cd..5e079161e492 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -2490,7 +2490,6 @@ void Window::EnableInput( bool bEnable, bool bChild ) if (!mpWindowImpl) return; - bool bNotify = (bEnable != mpWindowImpl->mbInputDisabled); if ( mpWindowImpl->mpBorderWindow ) { mpWindowImpl->mpBorderWindow->EnableInput( bEnable, false ); @@ -2538,13 +2537,6 @@ void Window::EnableInput( bool bEnable, bool bChild ) if ( IsReallyVisible() ) ImplGenerateMouseMove(); - - // #104827# notify parent - if ( bNotify && bEnable ) - { - NotifyEvent aNEvt( MouseNotifyEvent::INPUTENABLE, this ); - CompatNotify( aNEvt ); - } } void Window::EnableInput( bool bEnable, const vcl::Window* pExcludeWindow ) |