Changeset 7976 for trunk/src/comctl32/listview.c
- Timestamp:
- Feb 20, 2002, 2:55:13 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/listview.c
r7487 r7976 6576 6576 MEASUREITEMSTRUCT mis; 6577 6577 UINT id = GetWindowLongA(hwnd,GWL_ID); 6578 6579 6578 mis.CtlType = ODT_LISTVIEW; 6580 6579 mis.CtlID = id; … … 9394 9393 LONG lStyle = GetWindowLongA(hwnd, GWL_STYLE); 9395 9394 UINT uView = lStyle & LVS_TYPEMASK; 9396 9395 #ifdef __WIN32OS2__ 9396 LISTVIEW_INFO *infoPtr = (LISTVIEW_INFO *)GetWindowLongA(hwnd, 0); 9397 #endif 9397 9398 TRACE("(hwnd=%x, width=%d, height=%d)\n",hwnd, Width, Height); 9398 9399 … … 9412 9413 9413 9414 LISTVIEW_UpdateScroll(hwnd); 9415 9416 #ifdef __WIN32OS2__ 9417 //width/height may have changed 9418 infoPtr->nItemWidth = LISTVIEW_GetItemWidth(hwnd); 9419 infoPtr->nItemHeight = LISTVIEW_GetItemHeight(hwnd); 9420 #endif 9414 9421 9415 9422 /* invalidate client area + erase background */ … … 9566 9573 } 9567 9574 } 9575 9568 9576 9569 9577 /* update the size of the client area */
Note:
See TracChangeset
for help on using the changeset viewer.