]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed Borland C++ compilation
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 1 Dec 2001 13:46:07 +0000 (13:46 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 1 Dec 2001 13:46:07 +0000 (13:46 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12800 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/filename.cpp

index 2c21016d13f7e5571abb4f7f849f44d93e65d717..25dc0eecd9bbb0aa27f01f6ce25951d9161bf308 100644 (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