X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/283965f0b33d0a7ea025afcc5a87fb162d3ea0a2..f994a8ac8daef7ba9908af3e56f4b4d78fcbf958:/include/wx/url.h diff --git a/include/wx/url.h b/include/wx/url.h index c74abf302c..71189f1830 100644 --- a/include/wx/url.h +++ b/include/wx/url.h @@ -48,11 +48,13 @@ class WXDLLIMPEXP_NET wxURL : public wxURI { public: wxURL(const wxString& sUrl = wxEmptyString); - wxURL(const wxURI& url); + wxURL(const wxURI& uri); + wxURL(const wxURL& url); virtual ~wxURL(); wxURL& operator = (const wxString& url); - wxURL& operator = (const wxURI& url); + wxURL& operator = (const wxURI& uri); + wxURL& operator = (const wxURL& url); wxProtocol& GetProtocol() { return *m_protocol; } wxURLError GetError() const { return m_error; } @@ -99,6 +101,7 @@ protected: void Init(const wxString&); bool ParseURL(); void CleanData(); + void Free(); bool FetchProtocol(); friend class wxProtoInfo;