From: David Webster Date: Mon, 13 May 2002 15:49:41 +0000 (+0000) Subject: Compiler bug X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b0091f58f89adc3c3ced38353aedffa0effde17f Compiler bug git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15539 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/filefn.cpp b/src/common/filefn.cpp index 2770a37f38..819602adea 100644 --- a/src/common/filefn.cpp +++ b/src/common/filefn.cpp @@ -115,7 +115,7 @@ #ifdef __WINDOWS__ #include #include "wx/msw/mslu.h" - + // sys/cygwin.h is needed for cygwin_conv_to_full_win32_path() // // note that it must be included after @@ -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);