summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2014-05-23 22:54:16 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2014-05-23 22:54:16 +1000
commit58021e8866e6a539bb915742067b3674e0c93b92 (patch)
tree8e7b3d2345b5796406650eb4c9b366cb3351f8f4
parentfd95975a469f283dd0bc154caf62cc467aed38d6 (diff)
vcl: change to true and false in Window::SetCallHandlersOnInputDisabled()
Change-Id: Id6af99e1dfbf6bce68794027700eb500b7f3a8dc
-rw-r--r--vcl/source/window/window.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index c23856386fe5..bf4112ca43f4 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -2985,7 +2985,7 @@ void Window::Enable( bool bEnable, bool bChild )
void Window::SetCallHandlersOnInputDisabled( bool bCall )
{
- mpWindowImpl->mbCallHandlersDuringInputDisabled = bCall ? sal_True : sal_False;
+ mpWindowImpl->mbCallHandlersDuringInputDisabled = bCall ? true : false;
Window* pChild = mpWindowImpl->mpFirstChild;
while ( pChild )