]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/filesys.cpp
Optical improvements under OS X
[wxWidgets.git] / src / common / filesys.cpp
index 1e6cf4880a22e0d22cd21a862a68c36649102bd2..0eb5d8ef5eac764fef571bc47fbe47dbfe2aa41f 100644 (file)
@@ -244,7 +244,7 @@ wxFSFile* wxLocalFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs), const wxString&
     wxString fullpath = ms_root + fn.GetFullPath();
 
     if (!wxFileExists(fullpath))
-        return (wxFSFile*) NULL;
+        return NULL;
 
     // we need to check whether we can really read from this file, otherwise
     // wxFSFile is not going to work
@@ -258,7 +258,7 @@ wxFSFile* wxLocalFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs), const wxString&
     if ( !is->Ok() )
     {
         delete is;
-        return (wxFSFile*) NULL;
+        return NULL;
     }
 
     return new wxFSFile(is,