user32: DefMDIChildProc sends WM_MDINEXT with active child handle.
This commit is contained in:
parent
c345ca1a0f
commit
c51b1e6db6
|
@ -1494,10 +1494,10 @@ LRESULT WINAPI DefMDIChildProcW( HWND hwnd, UINT message,
|
|||
return SendMessageW( GetParent(client), message, wParam, lParam);
|
||||
break;
|
||||
case SC_NEXTWINDOW:
|
||||
SendMessageW( client, WM_MDINEXT, 0, 0);
|
||||
SendMessageW( client, WM_MDINEXT, (WPARAM)ci->hwndActiveChild, 0);
|
||||
return 0;
|
||||
case SC_PREVWINDOW:
|
||||
SendMessageW( client, WM_MDINEXT, 0, 1);
|
||||
SendMessageW( client, WM_MDINEXT, (WPARAM)ci->hwndActiveChild, 1);
|
||||
return 0;
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue