From 83149b1d2c566bd1c32da61f7c0af931363ab42b Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Sun, 5 Nov 2006 11:52:42 +0900 Subject: [PATCH] comctl32: Fix a regression. --- dlls/comctl32/imagelist.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dlls/comctl32/imagelist.c b/dlls/comctl32/imagelist.c index a9f829d1059..511305463af 100644 --- a/dlls/comctl32/imagelist.c +++ b/dlls/comctl32/imagelist.c @@ -2124,17 +2124,17 @@ ImageList_Remove (HIMAGELIST himl, INT i) /* copy all images and masks prior to the "removed" image */ if (i > 0) { - POINT pt; + SIZE sz; TRACE("Pre image copy: Copy %d images\n", i); SelectObject (hdcBmp, hbmNewImage); - imagelist_point_from_index(himl, i, &pt); - BitBlt (hdcBmp, 0, 0, pt.x, pt.y, himl->hdcImage, 0, 0, SRCCOPY); + imagelist_get_bitmap_size( himl, i, himl->cy, &sz ); + BitBlt (hdcBmp, 0, 0, sz.cx, sz.cy, himl->hdcImage, 0, 0, SRCCOPY); if (himl->hbmMask) { SelectObject (hdcBmp, hbmNewMask); - BitBlt (hdcBmp, 0, 0, pt.x, pt.y, himl->hdcMask, 0, 0, SRCCOPY); + BitBlt (hdcBmp, 0, 0, sz.cx, sz.cy, himl->hdcMask, 0, 0, SRCCOPY); } } -- 2.11.4.GIT