Module: wine Branch: refs/heads/master Commit: fe57d732492eed1c949d3ddd38d58f12e6ee0973 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=fe57d732492eed1c949d3ddd...
Author: Rein Klazes wijn@wanadoo.nl Date: Tue Jan 10 20:23:56 2006 +0100
hhctrl.ocx: Report commands in HtmlHelp that are not handled at all.
---
dlls/hhctrl.ocx/hhctrl.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/hhctrl.ocx/hhctrl.c b/dlls/hhctrl.ocx/hhctrl.c index 7eebbae..88c6bde 100644 --- a/dlls/hhctrl.ocx/hhctrl.c +++ b/dlls/hhctrl.ocx/hhctrl.c @@ -97,6 +97,8 @@ HWND WINAPI HtmlHelpW(HWND caller, LPCWS FIXME("Not all HH cases handled correctly\n"); doWinMain(GetModuleHandleW(NULL), file); break; + default: + FIXME("HH case %s not handled.\n", command_to_string( command )); } HeapFree(GetProcessHeap(), 0, file); return 0;