Changeset 7244 for trunk/src/comctl32/listview.c
- Timestamp:
- Oct 28, 2001, 12:43:21 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/listview.c
r7240 r7244 988 988 #ifdef __WIN32OS2__ 989 989 //SvL: An item can never be bigger than the client area 990 GetClientRect(hwnd, &rect); 991 nItemWidth = MIN(rect.left - rect.right, nItemWidth); 990 if(GetClientRect(hwnd, &rect)) { 991 nItemWidth = MIN(rect.right - rect.left, nItemWidth); 992 } 992 993 #endif 993 994 }
Note:
See TracChangeset
for help on using the changeset viewer.