fix bizarre build error

svn path=/trunk/; revision=16551
This commit is contained in:
Alex Ionescu 2005-07-13 02:45:53 +00:00
parent 2c8f96ecf4
commit 5f9eec4d04

View file

@ -6928,7 +6928,7 @@ static DWORD LISTVIEW_SetIconSpacing(LISTVIEW_INFO *infoPtr, INT cx, INT cy)
return oldspacing; return oldspacing;
} }
static inline void set_icon_size(SIZE *size, HIMAGELIST himl, BOOL small) static inline void set_icon_size(SIZE *size, HIMAGELIST himl, BOOL _small)
{ {
INT cx, cy; INT cx, cy;
@ -6939,8 +6939,8 @@ static inline void set_icon_size(SIZE *size, HIMAGELIST himl, BOOL small)
} }
else else
{ {
size->cx = GetSystemMetrics(small ? SM_CXSMICON : SM_CXICON); size->cx = GetSystemMetrics(_small ? SM_CXSMICON : SM_CXICON);
size->cy = GetSystemMetrics(small ? SM_CYSMICON : SM_CYICON); size->cy = GetSystemMetrics(_small ? SM_CYSMICON : SM_CYICON);
} }
} }