Patch #3359 2012-11-06 16:58
kortmann
A little patch to enable the use of windows help collections- Download
- 3359-A_little_patch.patch (473 bytes)
--- C:/DOKUME~1/Martin/LOKALE~1/Temp/help_plugin.cpp-revBASE.svn000.tmp.cpp Di Jan 31 13:09:18 2012
+++ C:/Martins/Freeware/codeblocks/src/plugins/contrib/help_plugin/help_plugin.cpp Di Nov 6 17:52:34 2012
@@ -616,7 +616,7 @@
return;
}
- if (ext.CmpNoCase(_T("chm")) == 0)
+ if ((ext.CmpNoCase(_T("chm")) == 0) || (ext.CmpNoCase(_T("col")) == 0))
{
LaunchCHMThread *p_thread = new LaunchCHMThread(helpfile, keyword);
p_thread->Create();