Ignore:
Timestamp:
Jul 26, 1999, 11:01:34 AM (26 years ago)
Author:
sandervl
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/new/window.cpp

    r395 r397  
    1 /* $Id: window.cpp,v 1.12 1999-07-25 17:47:25 sandervl Exp $ */
     1/* $Id: window.cpp,v 1.13 1999-07-26 09:01:34 sandervl Exp $ */
    22/*
    33 * Win32 window apis for OS/2
     
    6565    cs.lpszClass      = className;
    6666    cs.dwExStyle      = exStyle;
     67    dprintf(("CreateWindowExA: (%d,%d) (%d,%d), %x %x", x, y, width, height, style, exStyle));
    6768    window = new Win32Window( &cs, classAtom, FALSE );
    6869    if(window == NULL)
     
    616617BOOL WIN32API GetClientRect( HWND hwnd, PRECT pRect)
    617618{
    618 #ifdef DEBUG
    619     WriteLog("USER32:  GetClientRect of %X\n", hwnd);
    620 #endif
     619 BOOL rc;
     620
    621621    hwnd = Win32Window::Win32ToOS2Handle(hwnd);
    622     return OSLibWinQueryWindowRect(hwnd, pRect);
     622    rc = OSLibWinQueryWindowRect(hwnd, pRect);
     623    dprintf(("USER32:  GetClientRect of %X returned (%d,%d) (%d,%d)\n", hwnd, pRect->left, pRect->top, pRect->right, pRect->bottom));
     624    return rc;
    623625}
    624626//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.