From: Gilles Depeyrot Date: Wed, 31 Oct 2001 06:26:08 +0000 (+0000) Subject: use wxFILE_SEP_PATH instead of ':' separator for wxMac X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a044cb721af4610dc8443e24f9f51535f69ab02c use wxFILE_SEP_PATH instead of ':' separator for wxMac git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12227 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/dirctrlg.cpp b/src/generic/dirctrlg.cpp index 32e05b5adf..7df3852fe2 100644 --- a/src/generic/dirctrlg.cpp +++ b/src/generic/dirctrlg.cpp @@ -538,7 +538,7 @@ void wxGenericDirCtrl::SetupSections() { #if defined(__WXMSW__) || defined(__WXPM__) -#ifdef __WIN32__ +# ifdef __WIN32__ wxChar driveBuffer[256]; size_t n = (size_t) GetLogicalDriveStrings(255, driveBuffer); size_t i = 0; @@ -580,7 +580,7 @@ void wxGenericDirCtrl::SetupSections() if (driveBuffer[i] == wxT('\0')) break; } -#else +# else int drive; int currentDrive; @@ -597,7 +597,7 @@ void wxGenericDirCtrl::SetupSections() AddSection(path, name); } } -#endif +# endif #elif defined(__WXMAC__) FSSpec volume ; short index = 1 ; @@ -607,7 +607,7 @@ void wxGenericDirCtrl::SetupSections() break ; wxString name = wxMacFSSpec2MacFilename( &volume ) ; - AddSection(name+":", name, 0); + AddSection(name + wxFILE_SEP_PATH, name, 0); } #else AddSection(wxT("/"), _("The Computer"), 0);