From: Karsten Ballüder Date: Mon, 14 Jun 1999 15:47:28 +0000 (+0000) Subject: Modified so that it should work for __WXMSW__, too. I cannot check X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c5a451873e7ff8a8c66683496bd320c93d4f213c Modified so that it should work for __WXMSW__, too. I cannot check this myself, though. :-( git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2787 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/generic/helphtml.h b/include/wx/generic/helphtml.h index dc16448f21..83c87fd1a1 100644 --- a/include/wx/generic/helphtml.h +++ b/include/wx/generic/helphtml.h @@ -20,7 +20,11 @@ /// Name for map file. #define WXEXTHELP_MAPFILE "wxhelp.map" /// Path separator. +#ifdef __WXMSW__ +#define WXEXTHELP_SEPARATOR '\\' +#else #define WXEXTHELP_SEPARATOR '/' +#endif /// Maximum line length in map file. #define WXEXTHELP_BUFLEN 512 /// Character introducing comments/documentation field in map file.