-#endif // wxUSE_SOCKETS
-
-#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; }
-
- //Use wxURI instead - this does not work that well
- static wxString ConvertToValidURI(
- const wxString& uri,
- const wxChar* delims = wxT(";/?:@&=+$,")
- );
-
- //Use wxURI::Unescape instead
- static wxString ConvertFromURI(const wxString& uri);
-#endif