From f72124dbe5f289165f7c05ba6c3dcbef89e0ead6 Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Sun, 19 Aug 2001 16:39:14 +0000 Subject: [PATCH] We use native paths now in wxWindows. On the Mac, too. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11411 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/filename.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/filename.cpp b/src/common/filename.cpp index 5e6c33816f..3785a8682e 100644 --- a/src/common/filename.cpp +++ b/src/common/filename.cpp @@ -717,7 +717,7 @@ wxPathFormat wxFileName::GetFormat( wxPathFormat format ) #if defined(__WXMSW__) || defined(__WXPM__) format = wxPATH_DOS; #elif defined(__WXMAC__) - format = wxPATH_UNIX; // that's the way the rest of wx' code works right now + format = wxPATH_MAC; #else format = wxPATH_UNIX; #endif