Applied patch [ 1370718 ] WinCE does not support drive letters

Mike Wolfram


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36916 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2006-01-17 09:28:52 +00:00
parent 568c0346fc
commit d8a832f38f

View File

@ -1245,12 +1245,14 @@ wxString wxFileName::GetVolumeSeparator(wxPathFormat format)
{
wxString sepVol;
#ifndef __WXWINCE__
if ( (GetFormat(format) == wxPATH_DOS) ||
(GetFormat(format) == wxPATH_VMS) )
{
sepVol = wxFILE_SEP_DSK;
}
//else: leave empty
#endif
return sepVol;
}