]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/filefn.cpp
compilation fixes
[wxWidgets.git] / src / common / filefn.cpp
index 8108e29a516b27dd23b4be63b202ad41886fb2e6..888fabd96c87d9934d47a4eead6268d874adfb19 100644 (file)
@@ -285,6 +285,14 @@ wxFileExists (const wxString& filename)
 bool
 wxIsAbsolutePath (const wxString& filename)
 {
+#ifdef __WXMAC__
+  if (filename != wxT(""))
+  {
+    if( filename.Find(':') != wxNOT_FOUND && filename[0] != ':' )
+      return TRUE ;
+  }
+  return FALSE ;
+#else
   if (filename != wxT(""))
     {
       if (filename[0] == wxT('/')
@@ -299,6 +307,7 @@ wxIsAbsolutePath (const wxString& filename)
         return TRUE;
     }
   return FALSE;
+#endif
 }
 
 /*