]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/fs_filter.cpp
No real changes, just fix a typo in comments and documentation.
[wxWidgets.git] / src / common / fs_filter.cpp
index bf466d5af3b9b2511ce7e2394dc9ff3bfe696432..628a34af0e6f3c191592a9291bae76840a560872 100644 (file)
@@ -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
 #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"
+#include "wx/scopedptr.h"
 
 wxDEFINE_SCOPED_PTR_TYPE(wxFSFile)
 wxDEFINE_SCOPED_PTR_TYPE(wxInputStream)
@@ -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;
 }