Changeset 7133 for trunk/src/comctl32/listview.c
- Timestamp:
- Oct 19, 2001, 4:40:11 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/listview.c
r6705 r7133 5230 5230 INT* piImage; 5231 5231 LPSTR* ppszText; 5232 LPARAM *plParam; 5232 5233 HDPA hdpaSubItems; 5233 5234 LONG lStyle = GetWindowLongA(hwnd, GWL_STYLE); … … 5286 5287 piImage=&lpItem->iImage; 5287 5288 ppszText=&lpItem->pszText; 5289 plParam=&lpItem->lParam; 5288 5290 if ((infoPtr->uCallbackMask != 0) && (lpLVItem->mask & LVIF_STATE)) 5289 5291 { … … 5299 5301 piImage=&lpSubItem->iImage; 5300 5302 ppszText=&lpSubItem->pszText; 5303 plParam=NULL; 5301 5304 } 5302 5305 else … … 5304 5307 piImage=NULL; 5305 5308 ppszText=NULL; 5309 plParam=NULL; 5306 5310 } 5307 5311 } … … 5336 5340 { 5337 5341 lpLVItem->iImage = dispInfo.item.iImage; 5342 if ((dispInfo.item.mask & LVIF_DI_SETITEM) && piImage) 5343 { 5344 *piImage = dispInfo.item.iImage; 5345 } 5338 5346 } 5339 5347 else if (lpLVItem->mask & LVIF_IMAGE) … … 5345 5353 { 5346 5354 lpLVItem->lParam = dispInfo.item.lParam; 5355 if ((dispInfo.item.mask & LVIF_DI_SETITEM) && plParam) 5356 { 5357 *plParam = dispInfo.item.lParam; 5358 } 5347 5359 } 5348 5360 else if (lpLVItem->mask & LVIF_PARAM)
Note:
See TracChangeset
for help on using the changeset viewer.