| commit | 43ecfe036e792c8325461bddd7af37b3a796ac53 | [log] [tgz] |
|---|---|---|
| author | Erich Hoover <ehoover@mines.edu> | Tue Jun 26 10:05:19 2012 -0600 |
| committer | Alexandre Julliard <julliard@winehq.org> | Thu Jun 28 11:21:12 2012 +0200 |
| tree | 8331305a89bc9a758fe995b3a851c8d6580c9d9c | |
| parent | 5874d6f1fd82cee01edb0c21c313b96388899c93 [diff] [blame] |
hhctrl.ocx: Use document title for subtopics in the index.
diff --git a/dlls/hhctrl.ocx/help.c b/dlls/hhctrl.ocx/help.c index 3acb024..87ea94f 100644 --- a/dlls/hhctrl.ocx/help.c +++ b/dlls/hhctrl.ocx/help.c
@@ -634,6 +634,8 @@ IndexSubItem *item = &iiter->items[i]; WCHAR *name = iiter->keyword; + if(!item->name) + item->name = GetDocumentTitle(info->pCHMInfo, item->local); if(item->name) name = item->name; memset(&lvi, 0, sizeof(lvi));