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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user