# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1038416048 0 # Node ID 627e531ca53036da62f4848dbe3bf96749001be5 # Parent 0b3debaa9c6c8c790616ad10d6721b8c650f6dc4 Allow subitems to have icons so the container controls will be the same as on OS/2 and Unix. diff -r 0b3debaa9c6c -r 627e531ca530 win/dw.c --- a/win/dw.c Tue Nov 26 07:10:37 2002 +0000 +++ b/win/dw.c Wed Nov 27 16:54:08 2002 +0000 @@ -5601,7 +5601,7 @@ SendMessage(handle, LVM_INSERTCOLUMN, (WPARAM)z + l, (LPARAM)&lvc); } } - ListView_SetExtendedListViewStyle(handle, LVS_EX_FULLROWSELECT); + ListView_SetExtendedListViewStyle(handle, LVS_EX_FULLROWSELECT | LVS_EX_SUBITEMIMAGES); return TRUE; }