Deprecated methosd markup (documented).
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31127 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -114,7 +114,7 @@ Builds the URI from its individual components, adds proper seperators, and
|
|||||||
returns escape sequences to normal characters.
|
returns escape sequences to normal characters.
|
||||||
|
|
||||||
Note that it is preferred to call this over Unescape(BuildURI()) since
|
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}
|
\membersection{wxURI::Create}\label{wxuricreate}
|
||||||
@@ -330,9 +330,9 @@ to 2396}
|
|||||||
Translates all escape sequences (% hex hex) of \arg{uri} into
|
Translates all escape sequences (% hex hex) of \arg{uri} into
|
||||||
normal characters and returns the result.
|
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.
|
as it performs some optimizations over this method.
|
||||||
|
|
||||||
\docparam{uri}{string with escaped characters to convert}
|
\docparam{uri}{string with escaped characters to convert}
|
||||||
|
@@ -76,13 +76,13 @@ public:
|
|||||||
wxString GetPath() const { return m_path; }
|
wxString GetPath() const { return m_path; }
|
||||||
|
|
||||||
//Use wxURI instead - this does not work that well
|
//Use wxURI instead - this does not work that well
|
||||||
static wxString ConvertToValidURI(
|
wxDEPRECATED( static wxString ConvertToValidURI(
|
||||||
const wxString& uri,
|
const wxString& uri,
|
||||||
const wxChar* delims = wxT(";/?:@&=+$,")
|
const wxChar* delims = wxT(";/?:@&=+$,")
|
||||||
);
|
) );
|
||||||
|
|
||||||
//Use wxURI::Unescape instead
|
//Use wxURI::Unescape instead
|
||||||
static wxString ConvertFromURI(const wxString& uri);
|
wxDEPRECATED( static wxString ConvertFromURI(const wxString& uri) );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
Reference in New Issue
Block a user