- Timestamp:
- Jul 11, 2002, 5:19:29 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/listview.c
r8739 r8852 3889 3889 nDrawPosY += infoPtr->nItemHeight; 3890 3890 } 3891 3892 #ifdef __WIN32OS2__ 3893 /* we have to fill leftovers of what was NOT filled by application, otherwise 3894 we will have gaps */ 3895 if ((lStyle & LVS_OWNERDRAWFIXED)) 3896 { 3897 RECT tempRect; 3898 CopyRect(&tempRect, &infoPtr->rcList); 3899 tempRect.top = nDrawPosY; 3900 if (tempRect.top < tempRect.bottom) 3901 LISTVIEW_FillBackground(hwnd, hdc, &tempRect); 3902 } 3903 #endif 3891 3904 } 3892 3905 … … 8598 8611 bResult = TRUE; 8599 8612 } 8600 8601 8613 return bResult; 8602 8614 }
Note:
See TracChangeset
for help on using the changeset viewer.