Kaydet (Commit) ec1d05d9 authored tarafından Chris Sherlock's avatar Chris Sherlock

vcl: change to true and false in Window::ImplGetWinData()

Change-Id: I7e4c664bf867b43f121b6c37bfe8e470cab2cfd3
üst c72635e0
...@@ -1328,7 +1328,7 @@ ImplWinData* Window::ImplGetWinData() const ...@@ -1328,7 +1328,7 @@ ImplWinData* Window::ImplGetWinData() const
mpWindowImpl->mpWinData->mnTrackFlags = 0; mpWindowImpl->mpWinData->mnTrackFlags = 0;
mpWindowImpl->mpWinData->mnIsTopWindow = (sal_uInt16) ~0; // not initialized yet, 0/1 will indicate TopWindow (see IsTopWindow()) mpWindowImpl->mpWinData->mnIsTopWindow = (sal_uInt16) ~0; // not initialized yet, 0/1 will indicate TopWindow (see IsTopWindow())
mpWindowImpl->mpWinData->mbMouseOver = false; 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; return mpWindowImpl->mpWinData;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment