X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/856d2e527d20faf46ce40734e858c7cc92b2f704..b13d92d1c8840feca54b00e15ad558d77bda78df:/src/common/url.cpp diff --git a/src/common/url.cpp b/src/common/url.cpp index 0489da90d9..46e26db8ce 100644 --- a/src/common/url.cpp +++ b/src/common/url.cpp @@ -41,7 +41,7 @@ IMPLEMENT_CLASS(wxURL, wxObject) // Protocols list wxProtoInfo *wxURL::g_protocols = NULL; -wxHTTP wxURL::g_proxy; +wxHTTP *wxURL::g_proxy; ///////////////////////////////////////////////////////////////// // wxURL //////////////////////////////////////////////////////// @@ -56,8 +56,8 @@ wxHTTP wxURL::g_proxy; wxURL::wxURL(const wxString& url) { m_protocol = NULL; - if (g_proxy.IsConnected()) { - m_protocol = &g_proxy; + if (g_proxy->IsConnected()) { + m_protocol = g_proxy; m_protoname = "proxy"; m_path = url; return; @@ -267,7 +267,7 @@ wxInputStream *wxURL::GetInputStream(void) void wxURL::SetDefaultProxy(const wxString& url_proxy) { - g_proxy.Close(); + g_proxy->Close(); if (url_proxy.IsNull()) return; @@ -281,7 +281,7 @@ void wxURL::SetDefaultProxy(const wxString& url_proxy) addr.Hostname(hostname); addr.Service(port); - g_proxy.Connect(addr); + g_proxy->Connect(addr); } void wxURL::SetProxy(const wxString& url_proxy)