returns escape sequences to normal characters.
Note that it is preferred to call this over Unescape(BuildURI()) since
-BuildUnescapedURI performs some optimizations over the plain method.
+\helpref{BuildUnescapedURI}{wxuribuildunescapeduri} performs some optimizations over the plain method.
\membersection{wxURI::Create}\label{wxuricreate}
Translates all escape sequences (% hex hex) of \arg{uri} into
normal characters and returns the result.
-This is the preferred over wxURL::ConvertFromURI.
+This is the preferred over deprecated wxURL::ConvertFromURI.
-If you want to unescape an entire wxURI, use BuildUnescapedURI instead,
+If you want to unescape an entire wxURI, use \helpref{BuildUnescapedURI}{wxuribuildunescapeduri} instead,
as it performs some optimizations over this method.
\docparam{uri}{string with escaped characters to convert}
wxString GetPath() const { return m_path; }
//Use wxURI instead - this does not work that well
- static wxString ConvertToValidURI(
+ wxDEPRECATED( static wxString ConvertToValidURI(
const wxString& uri,
const wxChar* delims = wxT(";/?:@&=+$,")
- );
+ ) );
//Use wxURI::Unescape instead
- static wxString ConvertFromURI(const wxString& uri);
+ wxDEPRECATED( static wxString ConvertFromURI(const wxString& uri) );
#endif
protected: