Module: wine Branch: refs/heads/master Commit: 20c24fd3a27eb6d9e63783b4566fcfe0ad745426 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=20c24fd3a27eb6d9e63783b4...
Author: Mike McCormack mike@codeweavers.com Date: Mon May 29 19:38:49 2006 +0900
gdi32: Fix an unused variable warning.
---
dlls/gdi/freetype.c | 18 ++++++++++-------- 1 files changed, 10 insertions(+), 8 deletions(-)
diff --git a/dlls/gdi/freetype.c b/dlls/gdi/freetype.c index 3136244..abb33f9 100644 --- a/dlls/gdi/freetype.c +++ b/dlls/gdi/freetype.c @@ -4040,21 +4040,23 @@ BOOL WINAPI FontIsLinked(HDC hdc)
static BOOL is_hinting_enabled(void) { - FT_Module mod; - /* Use the >= 2.2.0 function if available */ if(pFT_Get_TrueType_Engine_Type) { FT_TrueTypeEngineType type = pFT_Get_TrueType_Engine_Type(library); return type == FT_TRUETYPE_ENGINE_TYPE_PATENTED; } - - /* otherwise if we've been compiled with < 2.2.0 headers - use the internal macro */ #ifdef FT_DRIVER_HAS_HINTER - mod = pFT_Get_Module(library, "truetype"); - if(mod && FT_DRIVER_HAS_HINTER(mod)) - return TRUE; + else + { + FT_Module mod; + + /* otherwise if we've been compiled with < 2.2.0 headers + use the internal macro */ + mod = pFT_Get_Module(library, "truetype"); + if(mod && FT_DRIVER_HAS_HINTER(mod)) + return TRUE; + } #endif
return FALSE;