- Timestamp:
- Nov 29, 2001, 1:43:17 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/listview.c
r7365 r7487 2740 2740 rcItem.left = LVIR_BOUNDS; 2741 2741 LISTVIEW_GetItemRect(hwnd, lpLVItem->iItem, &rcItem); 2742 #ifdef __WIN32OS2__ 2743 if(lStyle & LVS_OWNERDRAWFIXED && rcItem.left == REPORT_MARGINX) { 2744 rcItem.left = 0; 2745 } 2746 #endif 2742 2747 InvalidateRect(hwnd, &rcItem, TRUE); 2743 2748 } … … 2850 2855 rcItem.left = LVIR_BOUNDS; 2851 2856 LISTVIEW_GetItemRect(hwnd, lpLVItem->iItem, &rcItem); 2857 #ifdef __WIN32OS2__ 2858 if(lStyle & LVS_OWNERDRAWFIXED && rcItem.left == REPORT_MARGINX) { 2859 rcItem.left = 0; 2860 } 2861 #endif 2852 2862 InvalidateRect(hwnd, &rcItem, TRUE); 2853 2863 } … … 3624 3634 INT nListHeight = infoPtr->rcList.bottom - infoPtr->rcList.top; 3625 3635 INT nCountPerColumn = 1; 3636 3637 #ifdef __WIN32OS2__ 3638 if(infoPtr->nItemHeight == 0) 3639 return 1; 3640 #endif 3626 3641 3627 3642 if (nListHeight > 0)
Note:
See TracChangeset
for help on using the changeset viewer.