X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/37671b828af3b16b86cb7d5c7df12a4a7f584f48..cbb003b1053e30ea93a5cb956c360a4a39c35622:/src/common/fs_filter.cpp

diff --git a/src/common/fs_filter.cpp b/src/common/fs_filter.cpp
index bf466d5af3..621fed3a23 100644
--- a/src/common/fs_filter.cpp
+++ b/src/common/fs_filter.cpp
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        fs_filter.cpp
+// Name:        src/common/fs_filter.cpp
 // Purpose:     wxFilter file system handler
 // Author:      Mike Wetherell
 // Copyright:   (c) 2006 Mike Wetherell
@@ -10,14 +10,14 @@
 #include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
-#pragma hdrstop
+    #pragma hdrstop
 #endif
 
 #if wxUSE_FILESYSTEM
 
 #include "wx/fs_filter.h"
 
-#ifndef WXPRECOMP
+#ifndef WX_PRECOMP
 #endif
 
 #include "wx/ptr_scpd.h"
@@ -41,7 +41,7 @@ wxFSFile* wxFilterFSHandler::OpenFile(
     wxString right = GetRightLocation(location);
     if (!right.empty())
         return NULL;
-    
+
     wxString protocol = GetProtocol(location);
     const wxFilterClassFactory *factory = wxFilterClassFactory::Find(protocol);
     if (!factory)
@@ -56,11 +56,11 @@ wxFSFile* wxFilterFSHandler::OpenFile(
     if (!leftStream.get() || !leftStream->IsOk())
         return NULL;
 
-    wxInputStreamPtr stream(factory->NewStream(leftStream.get()));
+    wxInputStreamPtr stream(factory->NewStream(leftStream.release()));
 
     // The way compressed streams are supposed to be served is e.g.:
-    //  Content-type: application/postscript 
-    //  Content-encoding: gzip 
+    //  Content-type: application/postscript
+    //  Content-encoding: gzip
     // So the mime type should be just the mime type of the lhs. However check
     // whether the mime type is that of this compression format (e.g.
     // application/gzip). If so pop any extension and try GetMimeTypeFromExt,
@@ -79,7 +79,7 @@ wxFSFile* wxFilterFSHandler::OpenFile(
                        );
 }
 
-wxString wxFilterFSHandler::FindFirst(const wxString& spec, int flags)
+wxString wxFilterFSHandler::FindFirst(const wxString& WXUNUSED(spec), int WXUNUSED(flags))
 {
     return wxEmptyString;
 }