]> git.saurik.com Git - wxWidgets.git/commitdiff
Applied patch [ 1370718 ] WinCE does not support drive letters
authorJulian Smart <julian@anthemion.co.uk>
Tue, 17 Jan 2006 09:28:52 +0000 (09:28 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Tue, 17 Jan 2006 09:28:52 +0000 (09:28 +0000)
Mike Wolfram

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36916 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/filename.cpp

index 7be190fe44bbfa1679c169a2898ee80619f454be..e013b511631498937795131d418080480c299e20 100644 (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;
 }