- Timestamp:
- Mar 12, 2004, 5:48:17 PM (21 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/wintrack.cpp
r9951 r10511 694 694 if (HOOK_CallHooksA( WH_CBT, HCBT_MOVESIZE, (WPARAM)hwnd, (LPARAM)&lastsizingRect )) moved = FALSE; 695 695 696 SendMessageA( hwnd, WM_EXITSIZEMOVE, 0, 0 );697 SendMessageA( hwnd, WM_SETVISIBLE, !IsIconic(hwnd), 0L);698 699 696 /* window moved or resized */ 700 697 if (moved) … … 734 731 } 735 732 733 // Needs to be sent *after* changing the window position/size 734 SendMessageA( hwnd, WM_EXITSIZEMOVE, 0, 0 ); 735 SendMessageA( hwnd, WM_SETVISIBLE, !IsIconic(hwnd), 0L); 736 736 737 if (IsIconic(hwnd)) 737 738 { -
trunk/src/user32/wndmsg.cpp
r10431 r10511 1 /* $Id: wndmsg.cpp,v 1.2 0 2004-01-30 22:10:25 birdExp $ */1 /* $Id: wndmsg.cpp,v 1.21 2004-03-12 16:48:17 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window message text function for OS/2 … … 792 792 else dprintf2(("SendMessage%c %s for %x %x %x", unicode, GetMsgText(Msg), hwnd, wParam, lParam)); 793 793 } 794 //testestest795 if(Msg == WM_NOTIFY && (hwnd == 0x6800000a || hwnd == 0x6800000c)) {796 LPNMLISTVIEW pHdr = (LPNMLISTVIEW)lParam;797 dprintf(("WM_NOTIFY %x %x %x", pHdr->hdr.hwndFrom, pHdr->hdr.idFrom, pHdr->hdr.code));798 }799 //testestest800 794 } 801 795
Note:
See TracChangeset
for help on using the changeset viewer.