Changeset 2292 for trunk/src/user32/new/win32wmdichild.cpp
- Timestamp:
- Jan 2, 2000, 8:30:47 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32wmdichild.cpp
r2290 r2292 1 /* $Id: win32wmdichild.cpp,v 1. 6 2000-01-01 14:57:31cbratschi Exp $ */1 /* $Id: win32wmdichild.cpp,v 1.7 2000-01-02 19:30:45 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 MDI Child Window Class for OS/2 … … 506 506 { 507 507 INT nstagger; 508 RECT rect = *client->getClientRect();508 RECT rect; 509 509 INT spacing = GetSystemMetrics(SM_CYCAPTION) + 510 510 GetSystemMetrics(SM_CYFRAME) - 1; 511 511 512 client->getClientRect(&rect); 512 513 if( rect.bottom - rect.top - delta >= spacing ) 513 514 rect.bottom -= delta; … … 528 529 { 529 530 Win32MDIClientWindow *client = (Win32MDIClientWindow *)getParent(); 530 RECT rect = *client->getClientRect(); 531 531 RECT rect; 532 533 getClientRect(&rect); 532 534 if(client->getParent() == NULL) { 533 535 dprintf(("Win32MDIChildWindow::childGetMinMaxInfo:: client parent == NULL!!"));
Note:
See TracChangeset
for help on using the changeset viewer.