From 205830e23c8a5097af39d099303abb8976745229 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Mon, 28 Jan 2002 21:38:00 +0000 Subject: [PATCH] for file based help we have mac separators git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13889 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/generic/helphtml.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/wx/generic/helphtml.h b/include/wx/generic/helphtml.h index 070fd1ceb4..2386ee1c28 100644 --- a/include/wx/generic/helphtml.h +++ b/include/wx/generic/helphtml.h @@ -21,6 +21,8 @@ /// Path separator. #ifdef __WXMSW__ #define WXEXTHELP_SEPARATOR _T('\\') +#elif defined(__WXMAC__) +#define WXEXTHELP_SEPARATOR _T(':') #else #define WXEXTHELP_SEPARATOR _T('/') #endif