| commit | e7efd148a8f0af12bbe21e5ebf8b01efd2f925b3 | [log] [tgz] |
|---|---|---|
| author | Akihiro Sagawa <sagawa.aki@gmail.com> | Sat Feb 26 20:31:26 2011 +0900 |
| committer | Alexandre Julliard <julliard@winehq.org> | Mon Feb 28 13:15:23 2011 +0100 |
| tree | fa2573ca2a5f8832afb089bbcdba2ba02b12cbaa | |
| parent | c67f075d67a6d8de19dae570022265fc0f89ef52 [diff] [blame] |
hhctrl.ocx: Use DEFAULT_GUI_FONT to show non-ansi characters properly.
diff --git a/dlls/hhctrl.ocx/help.c b/dlls/hhctrl.ocx/help.c index 31060fe..4c6196e 100644 --- a/dlls/hhctrl.ocx/help.c +++ b/dlls/hhctrl.ocx/help.c
@@ -1509,7 +1509,7 @@ { LOGFONTW lf; - GetObjectW(GetStockObject(ANSI_VAR_FONT), sizeof(LOGFONTW), &lf); + GetObjectW(GetStockObject(DEFAULT_GUI_FONT), sizeof(LOGFONTW), &lf); lf.lfWeight = FW_NORMAL; lf.lfItalic = FALSE; lf.lfUnderline = FALSE;