From d8a832f38ff0c3c1095b07de23cb2a7260ec7ff7 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Tue, 17 Jan 2006 09:28:52 +0000 Subject: [PATCH] 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 --- src/common/filename.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/filename.cpp b/src/common/filename.cpp index 7be190fe44..e013b51163 100644 --- a/src/common/filename.cpp +++ b/src/common/filename.cpp @@ -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; } -- 2.45.2