mirror of
https://github.com/reactos/wine.git
synced 2025-02-18 03:48:01 +00:00
Revert "comctl32: Fix a potential regression in ImageList_ReplaceIcon()."
This reverts commit 9e772d1369f0292cfb79d8cabc017611fc6d0369.
This commit is contained in:
parent
fdd9a4e2a7
commit
1e6786699d
@ -2252,7 +2252,6 @@ ImageList_ReplaceIcon (HIMAGELIST himl, INT nIndex, HICON hIcon)
|
||||
BITMAP bmp;
|
||||
BOOL ret;
|
||||
POINT pt;
|
||||
INT i;
|
||||
|
||||
TRACE("(%p %d %p)\n", himl, nIndex, hIcon);
|
||||
|
||||
@ -2315,17 +2314,14 @@ ImageList_ReplaceIcon (HIMAGELIST himl, INT nIndex, HICON hIcon)
|
||||
SetBkColor (himl->hdcImage, RGB(255,255,255));
|
||||
hbmOldSrc = SelectObject (hdcImage, ii.hbmColor);
|
||||
|
||||
for (i=0; i<(bmp.bmWidth/himl->cx); i++) {
|
||||
imagelist_point_from_index(himl, nIndex, &pt);
|
||||
StretchBlt (himl->hdcImage, pt.x, pt.y, himl->cx, himl->cy,
|
||||
hdcImage, 0, 0, bmp.bmWidth, bmp.bmHeight, SRCCOPY);
|
||||
|
||||
imagelist_point_from_index(himl, nIndex+i, &pt);
|
||||
StretchBlt (himl->hdcImage, pt.x, pt.y, himl->cx, himl->cy,
|
||||
hdcImage, 0, 0, himl->cx*i, bmp.bmHeight, SRCCOPY);
|
||||
|
||||
if (himl->hbmMask) {
|
||||
SelectObject (hdcImage, ii.hbmMask);
|
||||
StretchBlt (himl->hdcMask, pt.x, pt.y, himl->cx, himl->cy,
|
||||
hdcImage, 0, 0, himl->cx*i, bmp.bmHeight, SRCCOPY);
|
||||
}
|
||||
if (himl->hbmMask) {
|
||||
SelectObject (hdcImage, ii.hbmMask);
|
||||
StretchBlt (himl->hdcMask, pt.x, pt.y, himl->cx, himl->cy,
|
||||
hdcImage, 0, 0, bmp.bmWidth, bmp.bmHeight, SRCCOPY);
|
||||
}
|
||||
|
||||
SelectObject (hdcImage, hbmOldSrc);
|
||||
|
Loading…
x
Reference in New Issue
Block a user