From: Vadim Zeitlin Date: Sat, 1 Dec 2001 13:46:07 +0000 (+0000) Subject: fixed Borland C++ compilation X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ab3edacebaba6d67c081ed1853f1d331296e533a fixed Borland C++ compilation git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12800 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/filename.cpp b/src/common/filename.cpp index 2c21016d13..25dc0eecd9 100644 --- a/src/common/filename.cpp +++ b/src/common/filename.cpp @@ -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