]> git.saurik.com Git - wxWidgets.git/commitdiff
Deprecated methosd markup (documented).
authorWłodzimierz Skiba <abx@abx.art.pl>
Thu, 23 Dec 2004 20:33:04 +0000 (20:33 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Thu, 23 Dec 2004 20:33:04 +0000 (20:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31127 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/uri.tex
include/wx/url.h

index 95109a8b640878cd172d2d99bb9324ade16a4179..6b06deb7f0b86959e33e7cff973cb2b75ac4bed7 100644 (file)
@@ -114,7 +114,7 @@ Builds the URI from its individual components, adds proper seperators, and
 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}
@@ -330,9 +330,9 @@ to 2396}
 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}
index 89e3e34e74c5526e5db4d72be28aaf706d2dbe0f..ea48335c543decf0c8709959579ae2949620e630 100644 (file)
@@ -76,13 +76,13 @@ public:
     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: