user32: CBT hook doesn't send window messages.

This commit is contained in:
Dmitry Timoshkov 2008-05-30 11:57:58 +09:00 committed by Alexandre Julliard
parent 2c4a3c8ad6
commit e6d9fc65a2
1 changed files with 2 additions and 2 deletions

View File

@ -316,12 +316,12 @@ static const struct message WmSwitchNotMaximizedChild[] = {
/* Activate 2nd MDI child */
{ WM_WINDOWPOSCHANGING, sent|wparam|defwinproc, SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE}, /* in the 2nd MDI child */
{ WM_NCACTIVATE, sent|wparam|defwinproc, 1 }, /* in the 2nd MDI child */
{ WM_SETVISIBLE, hook }, /* in the 1st MDI child */
{ HCBT_SETFOCUS, hook }, /* in the 1st MDI child */
{ WM_KILLFOCUS, sent|defwinproc }, /* in the 1st MDI child */
{ WM_IME_SETCONTEXT, sent|defwinproc|optional }, /* in the 1st MDI child */
{ WM_IME_SETCONTEXT, sent|optional }, /* in the MDI client */
{ WM_SETFOCUS, sent, 0 }, /* in the MDI client */
{ WM_SETVISIBLE, hook },
{ HCBT_SETFOCUS, hook },
{ WM_KILLFOCUS, sent }, /* in the MDI client */
{ WM_IME_SETCONTEXT, sent|optional }, /* in the MDI client */
{ WM_IME_SETCONTEXT, sent|defwinproc|optional }, /* in the 1st MDI child */