Changeset 22043 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Nov 1, 2012, 2:42:26 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r21988 r22043 874 874 } 875 875 } 876 SendMessageA(getWindowHandle(),WM_DESTROY, 0, 0); 876 877 // there may be no window proc already (reset to null with SetWindowLong by 878 // the application), avoid the debug assertion 879 if (win32wndproc) 880 SendMessageA(getWindowHandle(),WM_DESTROY, 0, 0); 881 877 882 if(::IsWindow(hwnd) == FALSE) { 878 883 //object already destroyed, so return immediately 879 884 return 1; 880 885 } 881 SendMessageA(getWindowHandle(),WM_NCDESTROY, 0, 0); 886 887 if (win32wndproc) 888 SendMessageA(getWindowHandle(),WM_NCDESTROY, 0, 0); 882 889 883 890 TIMER_KillTimerFromWindow(getWindowHandle());
Note:
See TracChangeset
for help on using the changeset viewer.