Some OS/2 specific improvements.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36889 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Neis
2006-01-15 22:16:02 +00:00
parent 9052e07db8
commit bf58daba38
2 changed files with 7 additions and 2 deletions

View File

@@ -301,7 +301,12 @@ wxFileExists (const wxString& filename)
#else // !__WIN32__
wxStructStat st;
#ifndef wxNEED_WX_UNISTD_H
return wxStat( filename.fn_str() , &st) == 0 && (st.st_mode & S_IFREG);
return (wxStat( filename.fn_str() , &st) == 0 && (st.st_mode & S_IFREG))
#ifdef __OS2__
|| (errno == EACCES) // if access is denied something with that name
// exists and is opened in exclusive mode.
#endif
;
#else
return wxStat( filename , &st) == 0 && (st.st_mode & S_IFREG);
#endif