- Timestamp:
- Jun 5, 2001, 10:39:23 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/listview.c
r5811 r5908 2372 2372 lpSubItem->pszText = NULL; 2373 2373 } 2374 2374 #ifdef __WIN32OS2__ 2375 else { 2376 //No need to change anything if text is the same 2377 if(lpSubItem->pszText && !strcmp(lpSubItem->pszText, lpLVItem->pszText)) { 2378 return FALSE; 2379 } 2380 } 2381 #endif 2375 2382 bResult = Str_SetPtrA(&lpSubItem->pszText, lpLVItem->pszText); 2376 2383 } … … 2741 2748 } 2742 2749 2750 #ifdef __WIN32OS2__ 2751 if(bResult) { 2752 #endif 2743 2753 rcItem.left = LVIR_BOUNDS; 2744 2754 LISTVIEW_GetItemRect(hwnd, lpLVItem->iItem, &rcItem); 2745 2755 InvalidateRect(hwnd, &rcItem, FALSE); 2756 #ifdef __WIN32OS2__ 2757 } 2758 #endif 2746 2759 } 2747 2760 }
Note:
See TracChangeset
for help on using the changeset viewer.