don't pass window argument to NotifyCaptureLost, it's not needed/used

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40395 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2006-07-31 12:17:39 +00:00
parent 2c5e5cbdb4
commit 72f8c79220
3 changed files with 5 additions and 7 deletions

View File

@@ -4107,12 +4107,11 @@ bool wxWindowMSW::HandlePaletteChanged(WXHWND hWndPalChange)
bool wxWindowMSW::HandleCaptureChanged(WXHWND hWndGainedCapture)
{
wxWindow *win = wxFindWinFromHandle(hWndGainedCapture);
// notify windows on the capture stack about lost capture
// (see http://sourceforge.net/tracker/index.php?func=detail&aid=1153662&group_id=9863&atid=109863):
wxWindowBase::NotifyCaptureLost(win);
wxWindowBase::NotifyCaptureLost();
wxWindow *win = wxFindWinFromHandle(hWndGainedCapture);
wxMouseCaptureChangedEvent event(GetId(), win);
event.SetEventObject(this);
return GetEventHandler()->ProcessEvent(event);