Changeset 10190 for trunk/src/user32/pmwindow.cpp
- Timestamp:
- Jul 31, 2003, 5:58:58 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/pmwindow.cpp
r10185 r10190 1 /* $Id: pmwindow.cpp,v 1.21 7 2003-07-28 11:27:47sandervl Exp $ */1 /* $Id: pmwindow.cpp,v 1.218 2003-07-31 15:56:44 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Managment Code for OS/2 … … 514 514 // - thread must not be suspended in WaitMessage 515 515 if(!teb || (msg != WM_CREATE && win32wnd == NULL) || teb->o.odin.fWaitMessageSuspend) { 516 if(teb ->o.odin.fWaitMessageSuspend)516 if(teb && teb->o.odin.fWaitMessageSuspend) 517 517 dprintf(("OS2: fWaitMessageSuspend window %x msg %x -> run default frame proc", hwnd, msg)); 518 518 else dprintf(("OS2: Invalid win32wnd pointer for window %x msg %x", hwnd, msg)); … … 1182 1182 // - thread must not be suspended in WaitMessage 1183 1183 if(!teb || (msg != WM_CREATE && win32wnd == NULL) || teb->o.odin.fWaitMessageSuspend) { 1184 if(teb ->o.odin.fWaitMessageSuspend)1184 if(teb && teb->o.odin.fWaitMessageSuspend) 1185 1185 dprintf(("PMFRAME: fWaitMessageSuspend window %x msg %x -> run default frame proc", hwnd, msg)); 1186 1186 else dprintf(("PMFRAME: Invalid win32wnd pointer for window %x msg %x", hwnd, msg));
Note:
See TracChangeset
for help on using the changeset viewer.