Index: dll/cpl/usrmgr/groupprops.c =================================================================== --- dll/cpl/usrmgr/groupprops.c (revision 69878) +++ dll/cpl/usrmgr/groupprops.c (working copy) @@ -83,7 +83,7 @@ hwndLV = GetDlgItem(hwndDlg, IDC_USER_ADD_MEMBERSHIP_LIST); GetClientRect(hwndLV, &rect); - hImgList = ImageList_Create(16,16,ILC_COLOR8 | ILC_MASK,5,5); + hImgList = ImageList_Create(16,16,ILC_COLOR32 | ILC_MASK,5,5); hIcon = LoadImage(hApplet,MAKEINTRESOURCE(IDI_GROUP),IMAGE_ICON,16,16,LR_DEFAULTCOLOR); ImageList_AddIcon(hImgList,hIcon); DestroyIcon(hIcon); @@ -406,7 +406,7 @@ hwndLV = GetDlgItem(hwndDlg, IDC_GROUP_GENERAL_MEMBERS); /* Create the image list */ - hImgList = ImageList_Create(16, 16, ILC_COLOR8 | ILC_MASK, 5, 5); + hImgList = ImageList_Create(16, 16, ILC_COLOR32 | ILC_MASK, 5, 5); hIcon = LoadImage(hApplet, MAKEINTRESOURCE(IDI_GROUP), IMAGE_ICON, 16, 16, LR_DEFAULTCOLOR); ImageList_AddIcon(hImgList, hIcon); DestroyIcon(hIcon); Index: dll/cpl/usrmgr/users.c =================================================================== --- dll/cpl/usrmgr/users.c (revision 69878) +++ dll/cpl/usrmgr/users.c (working copy) @@ -513,7 +513,7 @@ HICON hIcon; /* Create the image list */ - hImgList = ImageList_Create(16, 16, ILC_COLOR8 | ILC_MASK, 5, 5); + hImgList = ImageList_Create(16, 16, ILC_COLOR32 | ILC_MASK, 5, 5); hIcon = LoadImage(hApplet, MAKEINTRESOURCE(IDI_USER), IMAGE_ICON, 16, 16, LR_DEFAULTCOLOR); ImageList_AddIcon(hImgList, hIcon); hIcon = LoadImage(hApplet, MAKEINTRESOURCE(IDI_LOCKED_USER), IMAGE_ICON, 16, 16, LR_DEFAULTCOLOR);