Document ctors creating a wxString from repeated characters.

Closes #11187.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61884 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-09-12 10:42:04 +00:00
parent 9508a056c1
commit 474e971147
2 changed files with 25 additions and 5 deletions

View File

@@ -112,6 +112,26 @@ public:
*/
wxString(const wxString& stringSrc);
/**
Construct a string consisting of @a nRepeat copies of ch.
*/
wxString(wxUniChar ch, size_t nRepeat = 1);
/**
Construct a string consisting of @a nRepeat copies of ch.
*/
wxString(wxUniCharRef ch, size_t nRepeat = 1);
/**
Construct a string consisting of @a nRepeat copies of ch
converted to Unicode using the current locale encoding.
*/
wxString(char ch, size_t nRepeat = 1);
/**
Construct a string consisting of @a nRepeat copies of ch.
*/
wxString(wchar_t ch, size_t nRepeat = 1);
/**
Constructs a string from the string literal @a psz using