diff --git a/src/common/filefn.cpp b/src/common/filefn.cpp index 92a7946418..fef89de43f 100644 --- a/src/common/filefn.cpp +++ b/src/common/filefn.cpp @@ -289,8 +289,12 @@ wxIsAbsolutePath (const wxString& filename) #ifdef __WXMAC__ if (filename != wxT("")) { +// This seems wrong to me, RR. FIXME. + if( filename.Find(':') != wxNOT_FOUND && filename[0] != ':' ) return TRUE ; + +// if (filename[0] == ':') return TRUE ; } return FALSE ; #else