]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/HelpGen/src/wx_extra_imps.cpp
1. Parser improvements
[wxWidgets.git] / utils / HelpGen / src / wx_extra_imps.cpp
index 056a522371ecb08a0a16a8436ad3554fdbbaa59a..e4af6ef024b4944d072dd1dde1ce7e45a3c82ad0 100644 (file)
@@ -34,9 +34,9 @@ void WXDLLEXPORT wxSplitPath(const char *pszFileName,
 {
   wxCHECK_RET( pszFileName, _("NULL file name in wxSplitPath") );
 
-  const char *pDot = strrchr(pszFileName, FILE_SEP_EXT);
-  const char *pSepUnix = strrchr(pszFileName, FILE_SEP_PATH_UNIX);
-  const char *pSepDos = strrchr(pszFileName, FILE_SEP_PATH_DOS);
+  const char *pDot = strrchr(pszFileName, wxFILE_SEP_EXT);
+  const char *pSepUnix = strrchr(pszFileName, wxFILE_SEP_PATH_UNIX);
+  const char *pSepDos = strrchr(pszFileName, wxFILE_SEP_PATH_DOS);
 
   // take the last of the two
   size_t nPosUnix = pSepUnix ? pSepUnix - pszFileName : 0;