]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/fs_inet.cpp
Forgot to commit the header change too.
[wxWidgets.git] / src / common / fs_inet.cpp
index ce26c59f8ca7dc5bcfcfa5b0f64bc453d93ca903..2ed1f2e8658a13ab8077e11ee32c5a322021230e 100644 (file)
@@ -107,7 +107,6 @@ wxFSFile* wxInternetFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs),
     {
         wxInputStream *s = url.GetInputStream();
         wxString content = url.GetProtocol().GetContentType();
-        if (content == wxEmptyString) content = GetMimeTypeFromExt(location);
         if (s)
         {
             wxString tmpfile =
@@ -130,7 +129,7 @@ wxFSFile* wxInternetFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs),
         }
     }
 
-    return (wxFSFile*) NULL; // incorrect URL
+    return NULL; // incorrect URL
 #endif
 }