From 8478eff5b4ad2b9d910a542b6858137f866ffb22 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sun, 20 Jun 2010 14:49:40 +0000 Subject: [PATCH] no trailing slash for OSX_CARBON git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64641 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/filefn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/filefn.cpp b/src/common/filefn.cpp index 2b3314abce..21598eae9c 100644 --- a/src/common/filefn.cpp +++ b/src/common/filefn.cpp @@ -1600,7 +1600,7 @@ wxString wxGetOSDirectory() GetWindowsDirectory(buf, 256); return wxString(buf); #elif defined(__WXMAC__) && wxOSX_USE_CARBON - return wxMacFindFolder(kOnSystemDisk, 'macs', false); + return wxMacFindFolderNoSeparator(kOnSystemDisk, 'macs', false); #else return wxEmptyString; #endif