diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-05-23 22:46:13 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-05-23 22:46:13 +1000 |
commit | ec1d05d9fbf184418ffb2250233e16e5255ac18f (patch) | |
tree | d4e5450e47ae306f1416bb5d8f7f01c5dde98f29 /vcl/source/window/window.cxx | |
parent | c72635e02088390435ef995bf218665133a2655d (diff) |
vcl: change to true and false in Window::ImplGetWinData()
Change-Id: I7e4c664bf867b43f121b6c37bfe8e470cab2cfd3
Diffstat (limited to 'vcl/source/window/window.cxx')
-rw-r--r-- | vcl/source/window/window.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index 85cb44961c2f..53531bd65300 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -1328,7 +1328,7 @@ ImplWinData* Window::ImplGetWinData() const mpWindowImpl->mpWinData->mnTrackFlags = 0; mpWindowImpl->mpWinData->mnIsTopWindow = (sal_uInt16) ~0; // not initialized yet, 0/1 will indicate TopWindow (see IsTopWindow()) mpWindowImpl->mpWinData->mbMouseOver = false; - mpWindowImpl->mpWinData->mbEnableNativeWidget = (pNoNWF && *pNoNWF) ? sal_False : sal_True; // sal_True: try to draw this control with native theme API + mpWindowImpl->mpWinData->mbEnableNativeWidget = (pNoNWF && *pNoNWF) ? false : true; // sal_True: try to draw this control with native theme API } return mpWindowImpl->mpWinData; |