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
This commit is contained in:
Stefan Csomor
2002-01-28 21:38:00 +00:00
parent 0887f88e2d
commit 205830e23c

View File

@@ -21,6 +21,8 @@
/// Path separator. /// Path separator.
#ifdef __WXMSW__ #ifdef __WXMSW__
#define WXEXTHELP_SEPARATOR _T('\\') #define WXEXTHELP_SEPARATOR _T('\\')
#elif defined(__WXMAC__)
#define WXEXTHELP_SEPARATOR _T(':')
#else #else
#define WXEXTHELP_SEPARATOR _T('/') #define WXEXTHELP_SEPARATOR _T('/')
#endif #endif