]> git.saurik.com Git - wxWidgets.git/commitdiff
Unicodified wxEndsWithPathSeparator
authorOve Kaaven <ovek@arcticnet.no>
Sat, 17 Apr 1999 13:12:39 +0000 (13:12 +0000)
committerOve Kaaven <ovek@arcticnet.no>
Sat, 17 Apr 1999 13:12:39 +0000 (13:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2214 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/filefn.cpp

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