mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
* remove useless cast
svn path=/trunk/; revision=23798
This commit is contained in:
parent
29b76a30a2
commit
5a487c19e7
1 changed files with 4 additions and 4 deletions
|
@ -252,8 +252,8 @@ IntEnumFontFamilies(HDC Dc, LPLOGFONTW LogFont, PVOID EnumProc, LPARAM lParam,
|
|||
if (Unicode)
|
||||
{
|
||||
Ret = ((FONTENUMPROCW) EnumProc)(
|
||||
(LPLOGFONTW)&Info[i].EnumLogFontEx,
|
||||
(LPTEXTMETRICW)&Info[i].NewTextMetricEx,
|
||||
&Info[i].EnumLogFontEx,
|
||||
&Info[i].NewTextMetricEx,
|
||||
Info[i].FontType, lParam);
|
||||
}
|
||||
else
|
||||
|
@ -268,8 +268,8 @@ IntEnumFontFamilies(HDC Dc, LPLOGFONTW LogFont, PVOID EnumProc, LPARAM lParam,
|
|||
NewTextMetricExW2A(&NewTextMetricExA,
|
||||
&Info[i].NewTextMetricEx);
|
||||
Ret = ((FONTENUMPROCA) EnumProc)(
|
||||
(LPLOGFONTA)&EnumLogFontExA,
|
||||
(LPTEXTMETRICA)&NewTextMetricExA,
|
||||
&EnumLogFontExA,
|
||||
&NewTextMetricExA,
|
||||
Info[i].FontType, lParam);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue