Ignore:
Timestamp:
Oct 14, 1999, 8:27:59 PM (26 years ago)
Author:
sandervl
Message:

Lots of window fixes & changes

File:
1 edited

Legend:

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

    r1256 r1297  
    1 /* $Id: window.cpp,v 1.14 1999-10-12 14:47:24 sandervl Exp $ */
     1/* $Id: window.cpp,v 1.15 1999-10-14 18:27:59 sandervl Exp $ */
    22/*
    33 * Win32 window apis for OS/2
     
    617617BOOL WIN32API GetWindowRect( HWND hwnd, PRECT pRect)
    618618{
    619    Win32BaseWindow *window;
     619  Win32BaseWindow *window;
     620  BOOL rc;
    620621
    621622    window = Win32BaseWindow::GetWindowFromHandle(hwnd);
     
    625626        return 0;
    626627    }
    627     dprintf(("GetWindowRect %x", hwnd));
    628     return window->GetWindowRect(pRect);
     628    rc = window->GetWindowRect(pRect);
     629    dprintf(("GetWindowRect %x (%d,%d) (%d,%d)", hwnd, pRect->left, pRect->top, pRect->right, pRect->bottom));
     630    return rc;
    629631}
    630632//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.