Ignore:
Timestamp:
Oct 24, 1999, 1:05:05 AM (26 years ago)
Author:
sandervl
Message:

Combobox + windowpos changes + fixes

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
  • trunk/src/user32/window.cpp

    r1405 r1425  
    1 /* $Id: window.cpp,v 1.23 1999-10-22 18:11:50 sandervl Exp $ */
     1/* $Id: window.cpp,v 1.24 1999-10-23 23:04:39 sandervl Exp $ */
    22/*
    33 * Win32 window apis for OS/2
     
    738738BOOL WIN32API AdjustWindowRectEx( PRECT rect, DWORD style, BOOL menu, DWORD exStyle)
    739739{
    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));
    741741
    742742    /* Correct the window style */
     
    752752    Win32BaseWindow::NC_AdjustRectInner( rect, style, exStyle );
    753753
    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));
    755755    return TRUE;
    756756}
     
    942942    PRECT rcl;
    943943
    944     dprintf(("USER32:  ClientToScreen\n"));
     944    dprintf(("ClientToScreen (%d,%d)\n", pt->x, pt->y));
    945945    if (!hwnd) {
    946946        SetLastError(ERROR_INVALID_PARAMETER);
     
    957957    OSLibWinMapWindowPoints (wnd->getOS2WindowHandle(), OSLIB_HWND_DESKTOP, (OSLIBPOINT *)pt, 1);
    958958    pt->y = ScreenHeight - pt->y;
     959    dprintf(("ClientToScreen returned (%d,%d)\n", pt->x, pt->y));
    959960    return (TRUE);
    960961}
Note: See TracChangeset for help on using the changeset viewer.