Changeset 2292 for trunk/src/user32/new/win32wmdiclient.cpp
- Timestamp:
- Jan 2, 2000, 8:30:47 PM (26 years ago)
- 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:31cbratschi Exp $ */1 /* $Id: win32wmdiclient.cpp,v 1.9 2000-01-02 19:30:46 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 MDI Client Window Class for OS/2 … … 101 101 AppendMenuA( hWindowMenu, MF_SEPARATOR, 0, NULL ); 102 102 103 setClientRect(frameWnd->getClientRect ());103 setClientRect(frameWnd->getClientRectPtr()); 104 104 105 105 dprintf(("MDIClient created - hwnd = %04x, idFirst = %u\n", getWindowHandle(), idFirstChild )); … … 694 694 { 695 695 INT nstagger; 696 RECT rect = *this->getClientRect();696 RECT rect; 697 697 INT spacing = GetSystemMetrics(SM_CYCAPTION) + 698 698 GetSystemMetrics(SM_CYFRAME) - 1; 699 699 700 getClientRect(&rect); 700 701 if( rect.bottom - rect.top - delta >= spacing ) 701 702 rect.bottom -= delta;
Note:
See TracChangeset
for help on using the changeset viewer.