use :: when referring to wxDefaultSize or wxDefaultPosition

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60266 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2009-04-21 11:21:36 +00:00
parent c94bdf2a19
commit dc1b07fd4d
20 changed files with 64 additions and 52 deletions

View File

@@ -20,11 +20,9 @@ enum wxURIHostType
/**
@class wxURI
wxURI is used to extract information from a URI (Uniform Resource
Identifier).
wxURI is used to extract information from a URI (Uniform Resource Identifier).
For information about URIs, see RFC 3986
<http://www.ietf.org/rfc/rfc3986.txt>.
For information about URIs, see RFC 3986 (http://www.ietf.org/rfc/rfc3986.txt).
In short, a URL is a URI. In other words, URL is a subset of a URI - all
acceptable URLs are also acceptable URIs.
@@ -42,13 +40,12 @@ enum wxURIHostType
to a @NULL C string.
Example:
@code
//protocol will hold the http protocol (i.e. "http")
wxString protocol;
wxURI myuri("http://mysite.com");
if( myuri.HasScheme() )
protocol = myuri.GetScheme();
// protocol will hold the http protocol (i.e. "http")
wxString protocol;
wxURI myuri("http://mysite.com");
if( myuri.HasScheme() )
protocol = myuri.GetScheme();
@endcode
@note On URIs with a "file" scheme wxURI does not parse the userinfo,
@@ -276,8 +273,7 @@ public:
void Resolve(const wxURI& base, int flags = wxURI_STRICT);
/**
Translates all escape sequences (normal characters and returns the
result.
Translates all escape sequences (normal characters and returns the result.
If you want to unescape an entire wxURI, use BuildUnescapedURI()
instead, as it performs some optimizations over this method.