summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/window.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index 523dc5bdde77..e06a8cf1e961 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -2484,18 +2484,6 @@ void Window::Enable( bool bEnable, bool bChild )
ImplGenerateMouseMove();
}
-void Window::SetCallHandlersOnInputDisabled( bool bCall )
-{
- mpWindowImpl->mbCallHandlersDuringInputDisabled = bCall;
-
- VclPtr< vcl::Window > pChild = mpWindowImpl->mpFirstChild;
- while ( pChild )
- {
- pChild->SetCallHandlersOnInputDisabled( bCall );
- pChild = pChild->mpWindowImpl->mpNext;
- }
-}
-
bool Window::IsCallHandlersOnInputDisabled() const
{
return mpWindowImpl->mbCallHandlersDuringInputDisabled;