Correct formatting

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53681 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2008-05-21 07:39:34 +00:00
parent 970e987e89
commit ee28ebc046

View File

@@ -309,58 +309,58 @@ public:
/** /**
Constructs a string from the string literal @c psz using Constructs a string from the string literal @e psz using
the current locale encoding to convert it to Unicode (wxConvLibc). the current locale encoding to convert it to Unicode (wxConvLibc).
*/ */
wxString(const char *psz); wxString(const char *psz);
/** /**
Constructs a string from the string literal @c psz using Constructs a string from the string literal @e psz using
@c conv to convert it Unicode. @e conv to convert it Unicode.
*/ */
wxString(const char *psz, const wxMBConv& conv); wxString(const char *psz, const wxMBConv& conv);
/** /**
Constructs a string from the first @ nLength character of the string literal @c psz using Constructs a string from the first @e nLength character of the string literal @e psz using
the current locale encoding to convert it to Unicode (wxConvLibc). the current locale encoding to convert it to Unicode (wxConvLibc).
*/ */
wxString(const char *psz, size_t nLength); wxString(const char *psz, size_t nLength);
/** /**
Constructs a string from the first @ nLength character of the string literal @c psz using Constructs a string from the first @e nLength character of the string literal @e psz using
@c conv to convert it Unicode. @e conv to convert it Unicode.
*/ */
wxString(const char *psz, const wxMBConv& conv, size_t nLength); wxString(const char *psz, const wxMBConv& conv, size_t nLength);
/** /**
Constructs a string from the string literal @c pwz. Constructs a string from the string literal @e pwz.
*/ */
wxString(const wchar_t *pwz); wxString(const wchar_t *pwz);
/** /**
Constructs a string from the first @ nLength characters of the string literal @c pwz. Constructs a string from the first @e nLength characters of the string literal @e pwz.
*/ */
wxString(const wchar_t *pwz, size_t nLength); wxString(const wchar_t *pwz, size_t nLength);
/** /**
Constructs a string from @c buf using the using Constructs a string from @e buf using the using
the current locale encoding to convert it to Unicode. the current locale encoding to convert it to Unicode.
*/ */
wxString(const wxCharBuffer& buf); wxString(const wxCharBuffer& buf);
/** /**
Constructs a string from @c buf. Constructs a string from @e buf.
*/ */
wxString(const wxWCharBuffer& buf); wxString(const wxWCharBuffer& buf);
/** /**
Constructs a string from @str using the using the current locale encoding Constructs a string from @e str using the using the current locale encoding
to convert it to Unicode (wxConvLibc). to convert it to Unicode (wxConvLibc).
*/ */
wxString(const std::string& str); wxString(const std::string& str);
/** /**
Constructs a string from @str. Constructs a string from @e str.
*/ */
wxString(const std::wstring& str); wxString(const std::wstring& str);
@@ -373,13 +373,13 @@ public:
/** /**
Gets all the characters after the first occurrence of @e ch. Gets all the characters after the first occurrence of @e ch.
Returns the empty string if @a ch is not found. Returns the empty string if @e ch is not found.
*/ */
wxString AfterFirst(wxUniChar ch) const; wxString AfterFirst(wxUniChar ch) const;
/** /**
Gets all the characters after the last occurrence of @e ch. Gets all the characters after the last occurrence of @e ch.
Returns the whole string if @a ch is not found. Returns the whole string if @e ch is not found.
*/ */
wxString AfterLast(wxUniChar ch) const; wxString AfterLast(wxUniChar ch) const;