Changeset 2200 for trunk/src/user32/win32dlg.cpp
- Timestamp:
- Dec 24, 1999, 7:42:46 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32dlg.cpp
r2084 r2200 1 /* $Id: win32dlg.cpp,v 1.3 7 1999-12-16 00:11:46sandervl Exp $ */1 /* $Id: win32dlg.cpp,v 1.38 1999-12-24 18:39:11 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Dialog Code for OS/2 … … 293 293 while (TRUE) 294 294 { 295 if (!OSLibWinPeekMsg(&msg,0,0,0, MSG_NOREMOVE))295 if (!OSLibWinPeekMsg(&msg,0,0,0,PM_NOREMOVE)) 296 296 { 297 297 if(!(getStyle() & DS_NOIDLEMSG)) … … 299 299 OSLibWinGetMsg(&msg,0,0,0); 300 300 } 301 else OSLibWinPeekMsg(&msg,0,0,0, MSG_REMOVE);301 else OSLibWinPeekMsg(&msg,0,0,0,PM_REMOVE); 302 302 303 303 if(msg.message == WM_QUIT) … … 319 319 // MSG_REMOVE, !(getStyle() & DS_NOIDLEMSG), NULL )) 320 320 // if(OSLibWinPeekMsg(&msg, topOwner->getOS2FrameWindowHandle(), 0, 0, MSG_REMOVE)) 321 if(OSLibWinPeekMsg(&msg, 0, 0, 0, MSG_REMOVE))321 if(OSLibWinPeekMsg(&msg, 0, 0, 0, PM_REMOVE)) 322 322 { 323 323 if(msg.message == WM_QUIT) {
Note:
See TracChangeset
for help on using the changeset viewer.