Unicodified wxEndsWithPathSeparator

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2214 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ove Kaaven
1999-04-17 13:12:39 +00:00
parent 66fbdb15a4
commit a907da15bc

View File

@@ -1510,9 +1510,9 @@ wxString wxGetOSDirectory()
#endif #endif
} }
bool wxEndsWithPathSeparator(const char *pszFileName) bool wxEndsWithPathSeparator(const wxChar *pszFileName)
{ {
size_t len = Strlen(pszFileName); size_t len = wxStrlen(pszFileName);
if ( len == 0 ) if ( len == 0 )
return FALSE; return FALSE;
else else