]> git.saurik.com Git - wxWidgets.git/commitdiff
Quick fix up for __WXPM__
authorDavid Webster <Dave.Webster@bhmi.com>
Thu, 11 Nov 1999 04:39:48 +0000 (04:39 +0000)
committerDavid Webster <Dave.Webster@bhmi.com>
Thu, 11 Nov 1999 04:39:48 +0000 (04:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4469 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/filefn.cpp

index cef3b561f0113907e85ded033ff4daa02415db09..0c2e62e73636196debacb752ac7813fd9176d9ac 100644 (file)
@@ -893,7 +893,7 @@ wxString wxUnix2MacFilename (const char *str)
   return wxString (sMacFileNameConversion) ;
 }
 
-wxString wxMacFSSpec2MacFilename( const FSSpec *spec ) 
+wxString wxMacFSSpec2MacFilename( const FSSpec *spec )
 {
        Handle  myPath ;
        short   length ;
@@ -945,10 +945,10 @@ wxDos2UnixFilename (char *s)
 }
 
 void
-#ifdef __WXMSW__
+#if defined(__WXMSW__) || defined(__WXPM__)
 wxUnix2DosFilename (char *s)
 #else
-wxUnix2DosFilename (char *WXUNUSED(s) ) 
+wxUnix2DosFilename (char *WXUNUSED(s) )
 #endif
 {
 // Yes, I really mean this to happen under DOS only! JACS
@@ -1512,16 +1512,16 @@ wxChar *wxGetWorkingDirectory(wxChar *buf, int sz)
 #ifdef _MSC_VER
   if (_getcwd(cbuf, sz) == NULL) {
 #elif defined( __WXMAC__)
-       enum 
-       { 
-               SFSaveDisk = 0x214, CurDirStore = 0x398 
+       enum
+       {
+               SFSaveDisk = 0x214, CurDirStore = 0x398
        };
        FSSpec cwdSpec ;
        
        FSMakeFSSpec( - *(short *) SFSaveDisk , *(long *) CurDirStore , NULL , &cwdSpec ) ;
        wxString res = wxMacFSSpec2UnixFilename( &cwdSpec ) ;
        strcpy( buf , res ) ;
-       if (0) 
+       if (0)
 #else
   if (getcwd(cbuf, sz) == NULL) {
 #endif