- Timestamp:
- Apr 8, 2000, 8:31:07 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbasenonclient.cpp
r3341 r3350 1 /* $Id: win32wbasenonclient.cpp,v 1.2 1 2000-04-07 12:55:16 sandervlExp $ */1 /* $Id: win32wbasenonclient.cpp,v 1.22 2000-04-08 18:31:07 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 (non-client methods) … … 1012 1012 // As we don't need to clip anything when that occurs, this workaround 1013 1013 // solves the problem. 1014 if(rectClip.right == getWindowWidth() && rectClip.bottom == getWindowHeight()) 1015 { 1016 1017 1014 if(rectClip.right == getWindowWidth() && rectClip.bottom == getWindowHeight()) 1015 { 1016 clip = 0; 1017 rectClip = rect; 1018 1018 } 1019 1019 } … … 1056 1056 rect.top += GetSystemMetrics(SM_CYCAPTION); 1057 1057 } 1058 if( !clip || IntersectRect( &rfuzz, &r, &rectClip ) ) 1058 if( !clip || IntersectRect( &rfuzz, &r, &rectClip ) ) 1059 1059 DrawCaption(hdc,&r,active); 1060 1060 } … … 1087 1087 r.top = r.bottom - GetSystemMetrics(SM_CYHSCROLL) + 1; 1088 1088 FillRect( hdc, &r, GetSysColorBrush(COLOR_SCROLLBAR) ); 1089 //CB: todo: child window have sometimes a size grip (i.e. Notepad)1089 //CB: todo: child windows have sometimes a size grip (i.e. Notepad) 1090 1090 // WS_SIZEBOX isn't set in these cases 1091 1091 if (!(dwStyle & WS_CHILD)) … … 1320 1320 } 1321 1321 #ifdef DEBUG 1322 //SvL: Do NOT turn this into a dprintf. 1322 //SvL: Do NOT turn this into a dprintf. 1323 1323 else 1324 1324 if (wParam == SC_PUTMARK)
Note:
See TracChangeset
for help on using the changeset viewer.