From 7917d917baf17fe81910c0d00f5e1a4916f2659f Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Fri, 28 Sep 2012 14:21:25 +0200 Subject: [PATCH] hhctrl.ocx: Get rid of no longer needed hack. --- dlls/hhctrl.ocx/help.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dlls/hhctrl.ocx/help.c b/dlls/hhctrl.ocx/help.c index 79e5e11c9ad..c884dc04a34 100644 --- a/dlls/hhctrl.ocx/help.c +++ b/dlls/hhctrl.ocx/help.c @@ -253,17 +253,12 @@ static BOOL AppendFullPathURL(LPCWSTR file, LPWSTR buf, LPCWSTR index) BOOL NavigateToChm(HHInfo *info, LPCWSTR file, LPCWSTR index) { WCHAR buf[INTERNET_MAX_URL_LENGTH]; - LPWSTR ptr; TRACE("%p %s %s\n", info, debugstr_w(file), debugstr_w(index)); if ((!info->web_browser) || !AppendFullPathURL(file, buf, index)) return FALSE; - /* FIXME: HACK */ - if((ptr = strchrW(buf, '#'))) - *ptr = 0; - return SUCCEEDED(navigate_url(info, buf)); }