]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/protocol/http.h
Fix for unhiding the other version of the base class HitTest
[wxWidgets.git] / include / wx / protocol / http.h
index 762633ead782c85c45687842fb3487ff44098bca..f87227bc38346b4e64eaaf8475ad33e3d3a08ae8 100644 (file)
@@ -52,13 +52,15 @@ protected:
   };
 
   typedef wxStringToStringHashMap::iterator wxHeaderIterator;
+  typedef wxStringToStringHashMap::const_iterator wxHeaderConstIterator;
 
   bool BuildRequest(const wxString& path, wxHTTP_Req req);
   void SendHeaders();
   bool ParseHeaders();
 
   // find the header in m_headers
-  wxHeaderIterator FindHeader(const wxString& header) const;
+  wxHeaderIterator FindHeader(const wxString& header);
+  wxHeaderConstIterator FindHeader(const wxString& header) const;
 
   // deletes the header value strings
   void ClearHeaders();