fixed Borland C++ compilation

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12800 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-12-01 13:46:07 +00:00
parent 2edd0e7c66
commit ab3edaceba

View File

@@ -1012,7 +1012,7 @@ void wxFileName::SplitPath(const wxString& fullpathWithVolume,
// under VMS the end of the path is ']', not the path separator used to
// separate the components
wxString sepPath = format == wxPATH_VMS ? _T(']')
wxString sepPath = format == wxPATH_VMS ? wxString(_T(']'))
: GetPathSeparators(format);
// special Windows UNC paths hack: transform \\share\path into share:path