Kusanagi Kouichi <slash(a)ac.auone-net.jp> writes:
@@ -6407,7 +6409,7 @@ static BOOL get_text_metrics(GdiFont *font, LPTEXTMETRICW ptm) return TRUE; }
-static BOOL face_has_symbol_charmap(FT_Face ft_face) +static BOOL face_has_symbol_charmap(const FT_Face ft_face) { int i;
@@ -6729,7 +6731,7 @@ end: static DWORD freetype_GetGlyphOutline( PHYSDEV dev, UINT glyph, UINT format, LPGLYPHMETRICS lpgm, DWORD buflen, LPVOID buf, const MAT2 *lpmat ) { - struct freetype_physdev *physdev = get_freetype_dev( dev ); + const struct freetype_physdev * const physdev = get_freetype_dev( dev ); DWORD ret;
if (!physdev->font)
You are overdoing it. There's no reason to change per-value parameters or local variables like the physdev. -- Alexandre Julliard julliard(a)winehq.org