Commit 76299b37 authored by Hin-Tak Leung's avatar Hin-Tak Leung Committed by Alexandre Julliard

hhctrl.ocx: Return help window handle to caller.

parent 79071512
......@@ -132,8 +132,7 @@ HWND WINAPI HtmlHelpW(HWND caller, LPCWSTR filename, UINT command, DWORD_PTR dat
if(!res)
ReleaseHelpViewer(info);
}
return NULL; /* FIXME */
return info->WinType.hwndHelp;
}
case HH_HELP_CONTEXT: {
HHInfo *info;
......@@ -149,8 +148,7 @@ HWND WINAPI HtmlHelpW(HWND caller, LPCWSTR filename, UINT command, DWORD_PTR dat
NavigateToUrl(info, url);
heap_free(url);
return NULL; /* FIXME */
return info->WinType.hwndHelp;
}
case HH_PRETRANSLATEMESSAGE: {
static BOOL warned = FALSE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment