X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/47261ba05fa6fcc3cc304a3746363956ed67a3ff..29c8694822a192934278ba0f98eaf437024c0278:/include/wx/url.h diff --git a/include/wx/url.h b/include/wx/url.h index ea48335c54..18143b786c 100644 --- a/include/wx/url.h +++ b/include/wx/url.h @@ -71,9 +71,9 @@ public: #if WXWIN_COMPATIBILITY_2_4 //Use the proper wxURI accessors instead - wxString GetProtocolName() const { return m_scheme; } - wxString GetHostName() const { return m_server; } - wxString GetPath() const { return m_path; } + wxDEPRECATED( wxString GetProtocolName() const ); + wxDEPRECATED( wxString GetHostName() const ); + wxDEPRECATED( wxString GetPath() const ); //Use wxURI instead - this does not work that well wxDEPRECATED( static wxString ConvertToValidURI( @@ -88,11 +88,11 @@ public: protected: static wxProtoInfo *ms_protocols; -#if wxUSE_SOCKETS +#if wxUSE_PROTOCOL_HTTP static wxHTTP *ms_proxyDefault; static bool ms_useDefaultProxy; wxHTTP *m_proxy; -#endif // wxUSE_SOCKETS +#endif // wxUSE_PROTOCOL_HTTP #if wxUSE_URL_NATIVE friend class wxURLNativeImp;