]> git.saurik.com Git - wxWidgets.git/commitdiff
corrected wxMacFSSpec2MacFilename and wxMacFilename2FSSpec to convert to/from
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Mon, 29 Oct 2001 20:20:46 +0000 (20:20 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Mon, 29 Oct 2001 20:20:46 +0000 (20:20 +0000)
Unix style paths under Mac OS X (when compiled with the Apple DevTools)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12201 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/filefn.cpp

index b7f6a601d3de445e5db96dc64f17f8c4ae2462f9..a291928c858f685428d1a9a5f57612ddf6a49e1f 100644 (file)
@@ -143,11 +143,7 @@ const off_t wxInvalidOffset = (off_t)-1;
 // ----------------------------------------------------------------------------
 
 // we need to translate Mac filenames before passing them to OS functions
-#if defined(__WXMAC__) && defined(__DARWIN__)
-    #define OS_FILENAME(s) wxMac2UnixFilename(s.fn_str())
-#else
-    #define OS_FILENAME(s) (s.fn_str())
-#endif
+#define OS_FILENAME(s) (s.fn_str())
 
 // ============================================================================
 // implementation
@@ -846,7 +842,11 @@ wxString wxMacFSSpec2MacFilename( const FSSpec *spec )
     if ( length > 0 && (*myPath)[length-1] ==':' )
         (*myPath)[length-1] = 0 ;
 
-    wxString result(     (char*) *myPath ) ;
+#ifdef __DARWIN__
+    wxString result( wxMac2UnixFilename((char*) *myPath) ) ;
+#else
+    wxString result( (char*) *myPath ) ;
+#endif
     ::HUnlock( myPath ) ;
     ::DisposeHandle( myPath ) ;
     return result ;
@@ -854,7 +854,12 @@ wxString wxMacFSSpec2MacFilename( const FSSpec *spec )
 
 void wxMacFilename2FSSpec( const char *path , FSSpec *spec )
 {
-    FSpLocationFromFullPath( strlen(path ) , path , spec ) ;
+#ifdef __DARWIN__
+    const char *s = wxUnix2MacFilename(path);
+    FSpLocationFromFullPath( strlen(s) , s , spec ) ;
+#else
+    FSpLocationFromFullPath( strlen(path) , path , spec ) ;
+#endif
 }
 
 static char sMacFileNameConversion[ 1000 ] ;