Changeset 378 for trunk/src/user32/new/window.cpp
- Timestamp:
- Jul 23, 1999, 9:09:26 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/window.cpp
r332 r378 1 /* $Id: window.cpp,v 1. 7 1999-07-18 18:04:30 sandervlExp $ */1 /* $Id: window.cpp,v 1.8 1999-07-23 19:09:25 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 178 178 window = Win32Window::GetWindowFromHandle(hwnd); 179 179 if(!window) { 180 181 180 dprintf(("DestroyWindow, window %x not found", hwnd)); 181 return 0; 182 182 } 183 183 dprintf(("DestroyWindow %x", hwnd)); … … 192 192 window = Win32Window::GetWindowFromHandle(hwnd); 193 193 if(!window) { 194 195 194 dprintf(("SetActiveWindow, window %x not found", hwnd)); 195 return 0; 196 196 } 197 197 dprintf(("SetActiveWindow %x", hwnd)); … … 206 206 window = Win32Window::GetWindowFromHandle(hwnd); 207 207 if(!window) { 208 209 208 dprintf(("GetParent, window %x not found", hwnd)); 209 return 0; 210 210 } 211 211 dprintf(("GetParent %x", hwnd)); … … 220 220 window = Win32Window::GetWindowFromHandle(hwndChild); 221 221 if(!window) { 222 223 222 dprintf(("SetParent, window %x not found", hwndChild)); 223 return 0; 224 224 } 225 225 dprintf(("SetParent %x %x", hwndChild, hwndNewParent)); … … 234 234 window = Win32Window::GetWindowFromHandle(hwnd); 235 235 if(!window) { 236 237 236 dprintf(("IsChild, window %x not found", hwnd)); 237 return 0; 238 238 } 239 239 dprintf(("IsChild %x %x", hwndParent, hwnd)); … … 593 593 WriteLog("USER32: GetClientRect of %X\n", arg1); 594 594 #endif 595 595 arg1 = Win32Window::Win32ToOS2Handle(arg1); 596 596 return O32_GetClientRect(arg1, arg2); 597 597 }
Note:
See TracChangeset
for help on using the changeset viewer.