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;