]> git.saurik.com Git - wxWidgets.git/commitdiff
wxIsAbsolutePath is strange under wxMac
authorRobert Roebling <robert@roebling.de>
Sat, 14 Jul 2001 11:28:26 +0000 (11:28 +0000)
committerRobert Roebling <robert@roebling.de>
Sat, 14 Jul 2001 11:28:26 +0000 (11:28 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11039 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/filefn.cpp

index 92a79464185b96227d29357dc61d51f755731022..fef89de43f3e0d7031e4a2150389e40e2c63044d 100644 (file)
@@ -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