minor cleanup: don't use bool parameters, don't typedef the enums, don't abuse references

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30133 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-10-28 01:03:38 +00:00
parent c7ea279bf6
commit 8404931e0d
3 changed files with 36 additions and 25 deletions

View File

@@ -281,7 +281,7 @@ this URI equals {\tt uricomp}, otherwise it returns false.
\membersection{wxURI::Resolve}\label{wxuriresolve}
\func{void}{Resolve}{\param{const wxURI\& }{base}, \param{const bool\& }{bStrict = true}}
\func{void}{Resolve}{\param{const wxURI\& }{base}, \param{int }{flags = \texttt{wxURI\_STRICT}}}
Inherits this URI from a base URI - components that do not
exist in this URI are copied from the base, and if this URI's
@@ -296,6 +296,7 @@ of the base's is merged with this URI's path, resulting in the URI
"http://mysite.com/john/mydir".
\docparam{base}{Base URI to inherit from. Must be a full URI and not a reference}
\docparam{bStrict}{If false, some compatability layers are enabled to allow
loopholes from RFCs prior to 2396}
\docparam{flags}{Currently either \texttt{wxURI\_STRICT} or $0$, in non strict
mode some compatability layers are enabled to allow loopholes from RFCs prior
to 2396}