Ignore:
Timestamp:
Jan 2, 2000, 8:30:47 PM (26 years ago)
Author:
cbratschi
Message:

* empty log message *

File:
1 edited

Legend:

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

    r2290 r2292  
    1 /* $Id: win32wmdiclient.cpp,v 1.8 2000-01-01 14:57:31 cbratschi Exp $ */
     1/* $Id: win32wmdiclient.cpp,v 1.9 2000-01-02 19:30:46 cbratschi Exp $ */
    22/*
    33 * Win32 MDI Client Window Class for OS/2
     
    101101        AppendMenuA( hWindowMenu, MF_SEPARATOR, 0, NULL );
    102102
    103         setClientRect(frameWnd->getClientRect());
     103        setClientRect(frameWnd->getClientRectPtr());
    104104
    105105        dprintf(("MDIClient created - hwnd = %04x, idFirst = %u\n", getWindowHandle(), idFirstChild ));
     
    694694{
    695695    INT  nstagger;
    696     RECT rect = *this->getClientRect();
     696    RECT rect;
    697697    INT  spacing = GetSystemMetrics(SM_CYCAPTION) +
    698698                     GetSystemMetrics(SM_CYFRAME) - 1;
    699699
     700    getClientRect(&rect);
    700701    if( rect.bottom - rect.top - delta >= spacing )
    701702        rect.bottom -= delta;
Note: See TracChangeset for help on using the changeset viewer.