]> git.saurik.com Git - wxWidgets.git/commitdiff
Compiler bug
authorDavid Webster <Dave.Webster@bhmi.com>
Mon, 13 May 2002 15:49:41 +0000 (15:49 +0000)
committerDavid Webster <Dave.Webster@bhmi.com>
Mon, 13 May 2002 15:49:41 +0000 (15:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15539 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/filefn.cpp

index 2770a37f388b5d6ce075aa0db1213277318992cf..819602adea4b70003d09076ef9ba0142af64d50a 100644 (file)
 #ifdef __WINDOWS__
     #include <windows.h>
     #include "wx/msw/mslu.h"
-    
+
     // sys/cygwin.h is needed for cygwin_conv_to_full_win32_path()
     //
     // note that it must be included after <windows.h>
@@ -922,7 +922,7 @@ wxString wxMacFSSpec2MacFilename( const FSSpec *spec )
         //   includes previously prepended path separator
         strcat(thePath, theFileName);
     }
-    
+
     // create path string for return value
     wxString result( thePath ) ;
 #else
@@ -1396,7 +1396,7 @@ wxString wxFindFirstFile(const wxChar *spec, int flags)
     }
 
     wxString result;
-    gs_dir->GetFirst(&result, wxFileNameFromPath((wxChar) spec), dirFlags);
+    gs_dir->GetFirst(&result, wxFileNameFromPath((wxChar*) spec), dirFlags);
     if ( result.IsEmpty() )
     {
         wxDELETE(gs_dir);