X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/71432ef81fcd99814dc5eab49622e7af04c668e1..ab252f7b29379d786302b563f97cb8d0ee2a1246:/utils/HelpGen/src/wx_extra_imps.cpp?ds=inline diff --git a/utils/HelpGen/src/wx_extra_imps.cpp b/utils/HelpGen/src/wx_extra_imps.cpp index 056a522371..e4af6ef024 100644 --- a/utils/HelpGen/src/wx_extra_imps.cpp +++ b/utils/HelpGen/src/wx_extra_imps.cpp @@ -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;