git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36936
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
}
/* static */
-wxString wxFileName::GetVolumeSeparator(wxPathFormat format)
+wxString wxFileName::GetVolumeSeparator(wxPathFormat WXUNUSED_IN_WINCE(format))
{
+#ifdef __WXWINCE__
+ return wxEmptyString;
+#else
wxString sepVol;
-#ifndef __WXWINCE__
if ( (GetFormat(format) == wxPATH_DOS) ||
(GetFormat(format) == wxPATH_VMS) )
{
sepVol = wxFILE_SEP_DSK;
}
//else: leave empty
-#endif
return sepVol;
+#endif
}
/* static */