From c5a451873e7ff8a8c66683496bd320c93d4f213c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Karsten=20Ball=C3=BCder?= Date: Mon, 14 Jun 1999 15:47:28 +0000 Subject: [PATCH] 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 --- include/wx/generic/helphtml.h | 4 ++++ 1 file changed, 4 insertions(+) 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. -- 2.50.0