summaryrefslogtreecommitdiff
path: root/vcl/source/window/window.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/window/window.cxx')
-rw-r--r--vcl/source/window/window.cxx8
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 )