]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/filefn.cpp
More fixes to make Borland compile this in Unicode mode.
[wxWidgets.git] / src / common / filefn.cpp
index 0155530824a7e82ccd534084e7521ed0b63af9d2..51d2877c20e299c75a858ce6bf62c58ae31dd66c 100644 (file)
@@ -277,7 +277,7 @@ bool wxFileExists(const char *pszFileName)
 bool
 wxIsAbsolutePath (const wxString& filename)
 {
-  if (filename != "")
+  if (filename != _T(""))
     {
       if (filename[0] == _T('/')
 #ifdef __VMS__
@@ -721,7 +721,7 @@ wxPathOnly (wxChar *path)
 // Return just the directory, or NULL if no directory
 wxString wxPathOnly (const wxString& path)
 {
-  if (path != "")
+  if (path != _T(""))
     {
       wxChar buf[_MAXPATHLEN];