From: Vadim Zeitlin Date: Fri, 11 Apr 2008 17:56:30 +0000 (+0000) Subject: ENDSESSION_LOGOFF is a bit flag, test for it using bit end and not equality in WM_END... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f801d19a746e3b36a89742ccc0009b0e5de31aba?ds=sidebyside ENDSESSION_LOGOFF is a bit flag, test for it using bit end and not equality in WM_ENDSESSION handler git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53130 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/window.cpp b/src/msw/window.cpp index 53d7313f36..f0baae9521 100644 --- a/src/msw/window.cpp +++ b/src/msw/window.cpp @@ -3918,7 +3918,7 @@ bool wxWindowMSW::HandleEndSession(bool endSession, long logOff) wxCloseEvent event(wxEVT_END_SESSION, wxID_ANY); event.SetEventObject(wxTheApp); event.SetCanVeto(false); - event.SetLoggingOff( (logOff == (long)ENDSESSION_LOGOFF) ); + event.SetLoggingOff((logOff & ENDSESSION_LOGOFF) != 0); return wxTheApp->ProcessEvent(event); #else