Changeset 225 for trunk/src/user32/defwndproc.cpp
- Timestamp:
- Jun 27, 1999, 6:24:19 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/defwndproc.cpp
r215 r225 1 /* $Id: defwndproc.cpp,v 1. 5 1999-06-26 13:21:11sandervl Exp $ */1 /* $Id: defwndproc.cpp,v 1.6 1999-06-27 16:23:23 sandervl Exp $ */ 2 2 3 3 /* … … 53 53 { 54 54 DWORD dwStyle = GetWindowLongA(hwnd, GWL_STYLE); 55 DWORD dwExStyle = GetWindowLongA(hwnd, GWL_EXSTYLE); 55 56 dprintf(("DefWndProc: WM_MOUSEACTIVATE for %x Msg %s", hwnd, GetMsgText(HIWORD(lParam)))); 56 if (dwStyle & WS_CHILD)57 if(dwStyle & WS_CHILD && !(dwExStyle & WS_EX_NOPARENTNOTIFY) ) 57 58 { 58 59 HWND hwndParent = GetParent(hwnd); … … 68 69 { 69 70 DWORD dwStyle = GetWindowLongA(hwnd, GWL_STYLE); 71 DWORD dwExStyle = GetWindowLongA(hwnd, GWL_EXSTYLE); 70 72 dprintf(("DefWndProc: WM_SETCURSOR for %x Msg %s", hwnd, GetMsgText(HIWORD(lParam)))); 71 if (dwStyle & WS_CHILD)73 if(dwStyle & WS_CHILD && !(dwExStyle & WS_EX_NOPARENTNOTIFY) ) 72 74 { 73 75 HWND hwndParent = GetParent(hwnd);
Note:
See TracChangeset
for help on using the changeset viewer.