Comment out the post-#endif comment

Even though both MSVC and gcc seem to silently ignore everything coming
after "#endif", it's still wrong to have anything but a comment after
it.

See commit 881aabf63e
This commit is contained in:
Vadim Zeitlin 2019-08-20 13:04:26 +02:00
parent 881aabf63e
commit 23d43a6e55

View File

@ -595,9 +595,9 @@ void wxComboPopupWindowEvtHandler::OnActivate( wxActivateEvent& event )
// or setting the focus improperly (Win 10), so postpone it slightly.
// See wxPopupTransientWindow::MSWHandleMessage().
CallAfter(&wxComboPopupWindowEvtHandler::HideOnDeactivate);
#else
#else // !__WXMSW__
HideOnDeactivate();
#endif __WXMSW__ / !__WXMSW__
#endif // __WXMSW__ / !__WXMSW__
event.Skip();
}
}