Changeset 3501 for trunk/src/user32/window.cpp
- Timestamp:
- May 9, 2000, 8:56:59 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/window.cpp
r3493 r3501 1 /* $Id: window.cpp,v 1.6 5 2000-05-05 11:32:38sandervl Exp $ */1 /* $Id: window.cpp,v 1.66 2000-05-09 18:56:59 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 317 317 return 0; 318 318 } 319 dprintf(("DestroyWindow %x", hwnd));320 319 return window->DestroyWindow(); 321 320 } … … 812 811 dprintf(("AdjustWindowRectEx %x %x %d (%d,%d)(%d,%d)\n", style, exStyle, menu, rect->left, rect->top, rect->right, rect->bottom)); 813 812 813 if(style == 0 && menu == FALSE && exStyle == 0) { 814 return TRUE; //nothing needs to be changed (VERIFIED in NT 4) 815 } 814 816 /* Correct the window style */ 815 817 if (!(style & (WS_POPUP | WS_CHILD))) /* Overlapped window */ … … 1026 1028 { 1027 1029 dprintf(("FlashWindow %x %d\n", hwnd, fFlash)); 1028 return OSLibWinFlashWindow(Win32BaseWindow::Win32ToOS2Handle(hwnd), fFlash); 1030 // return OSLibWinFlashWindow(Win32BaseWindow::Win32ToOS2Handle(hwnd), fFlash); 1031 return 1; 1029 1032 } 1030 1033 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.