Changeset 1425 for trunk/src/user32/window.cpp
- Timestamp:
- Oct 24, 1999, 1:05:05 AM (26 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32
-
Property svn:ignore
set to
user32.lrf
user32exp.def
resource.asm
-
Property svn:ignore
set to
-
trunk/src/user32/window.cpp
r1405 r1425 1 /* $Id: window.cpp,v 1.2 3 1999-10-22 18:11:50sandervl Exp $ */1 /* $Id: window.cpp,v 1.24 1999-10-23 23:04:39 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 738 738 BOOL WIN32API AdjustWindowRectEx( PRECT rect, DWORD style, BOOL menu, DWORD exStyle) 739 739 { 740 dprintf(("AdjustWindowRectEx %x %x %d (%d,%d)(%d,%d)\n", style, exStyle, menu, rect-> right, rect->top, rect->left, rect->bottom));740 dprintf(("AdjustWindowRectEx %x %x %d (%d,%d)(%d,%d)\n", style, exStyle, menu, rect->left, rect->top, rect->right, rect->bottom)); 741 741 742 742 /* Correct the window style */ … … 752 752 Win32BaseWindow::NC_AdjustRectInner( rect, style, exStyle ); 753 753 754 dprintf(("AdjustWindowRectEx returned (%d,%d)(%d,%d)\n", rect-> right, rect->top, rect->left, rect->bottom));754 dprintf(("AdjustWindowRectEx returned (%d,%d)(%d,%d)\n", rect->left, rect->top, rect->right, rect->bottom)); 755 755 return TRUE; 756 756 } … … 942 942 PRECT rcl; 943 943 944 dprintf((" USER32: ClientToScreen\n"));944 dprintf(("ClientToScreen (%d,%d)\n", pt->x, pt->y)); 945 945 if (!hwnd) { 946 946 SetLastError(ERROR_INVALID_PARAMETER); … … 957 957 OSLibWinMapWindowPoints (wnd->getOS2WindowHandle(), OSLIB_HWND_DESKTOP, (OSLIBPOINT *)pt, 1); 958 958 pt->y = ScreenHeight - pt->y; 959 dprintf(("ClientToScreen returned (%d,%d)\n", pt->x, pt->y)); 959 960 return (TRUE); 960 961 }
Note:
See TracChangeset
for help on using the changeset viewer.