mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[USER32]
- Simplify finding the icon size in IntDrawState - As a bonus, it now works for black and white icons too svn path=/trunk/; revision=53193
This commit is contained in:
@@ -1254,7 +1254,6 @@ IntDrawState(HDC hdc, HBRUSH hbr, DRAWSTATEPROC func, LPARAM lp, WPARAM wp,
|
||||
if(!cx || !cy)
|
||||
{
|
||||
SIZE s;
|
||||
ICONINFO ici;
|
||||
BITMAP bm;
|
||||
|
||||
switch(opcode)
|
||||
@@ -1270,14 +1269,8 @@ IntDrawState(HDC hdc, HBRUSH hbr, DRAWSTATEPROC func, LPARAM lp, WPARAM wp,
|
||||
break;
|
||||
|
||||
case DST_ICON:
|
||||
if(!GetIconInfo((HICON)lp, &ici))
|
||||
if(!get_icon_size((HICON)lp, &s))
|
||||
return FALSE;
|
||||
if(!GetObjectW(ici.hbmColor, sizeof(bm), &bm))
|
||||
return FALSE;
|
||||
s.cx = bm.bmWidth;
|
||||
s.cy = bm.bmHeight;
|
||||
DeleteObject(ici.hbmMask);
|
||||
DeleteObject(ici.hbmColor);
|
||||
break;
|
||||
|
||||
case DST_BITMAP:
|
||||
|
||||
Reference in New Issue
Block a user