X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a907da15bce0446ae1f0e1794a24082ca5a4b49f..d716d96758a9f70b565fa849fc92bc6238047e8c:/src/common/filefn.cpp diff --git a/src/common/filefn.cpp b/src/common/filefn.cpp index 0155530824..51d2877c20 100644 --- a/src/common/filefn.cpp +++ b/src/common/filefn.cpp @@ -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];