Minor formating
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54806 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -86,7 +86,7 @@ public:
|
||||
you should consider using wxUString.
|
||||
|
||||
Since iterating over a wxString by index can become inefficient in UTF-8
|
||||
mode and iterators should be used instead of index based access:
|
||||
mode iterators should be used instead of index based access:
|
||||
|
||||
@code
|
||||
wxString s = "hello";
|
||||
|
@@ -46,83 +46,83 @@ public:
|
||||
/**
|
||||
Copy constructor.
|
||||
*/
|
||||
wxUString( const wxUString &str )
|
||||
wxUString( const wxUString &str );
|
||||
/**
|
||||
Constructs a string from a 32-bit string literal.
|
||||
*/
|
||||
wxUString( const wxChar32 *str )
|
||||
wxUString( const wxChar32 *str );
|
||||
/**
|
||||
Constructs a string from 32-bit string buffer.
|
||||
*/
|
||||
wxUString( const wxU32CharBuffer &buf )
|
||||
wxUString( const wxU32CharBuffer &buf );
|
||||
/**
|
||||
Constructs a string from C string literal using wxConvLibc to convert it to Unicode.
|
||||
*/
|
||||
wxUString( const char *str )
|
||||
wxUString( const char *str );
|
||||
/**
|
||||
Constructs a string from C string buffer using wxConvLibc to convert it to Unicode.
|
||||
*/
|
||||
wxUString( const wxCharBuffer &buf )
|
||||
wxUString( const wxCharBuffer &buf );
|
||||
/**
|
||||
Constructs a string from C string literal using @a conv to convert it to Unicode.
|
||||
*/
|
||||
wxUString( const char *str, const wxMBConv &conv )
|
||||
wxUString( const char *str, const wxMBConv &conv );
|
||||
/**
|
||||
Constructs a string from C string literal using @a conv to convert it to Unicode.
|
||||
*/
|
||||
wxUString( const wxCharBuffer &buf, const wxMBConv &conv )
|
||||
wxUString( const wxCharBuffer &buf, const wxMBConv &conv );
|
||||
/**
|
||||
Constructs a string from UTF-16 string literal
|
||||
*/
|
||||
wxUString( const wxChar16 *str )
|
||||
wxUString( const wxChar16 *str );
|
||||
/**
|
||||
Constructs a string from UTF-16 string buffer
|
||||
*/
|
||||
wxUString( const wxU16CharBuffer &buf )
|
||||
wxUString( const wxU16CharBuffer &buf );
|
||||
/**
|
||||
Constructs a string from wxString.
|
||||
*/
|
||||
wxUString( const wxString &str )
|
||||
wxUString( const wxString &str );
|
||||
/**
|
||||
Constructs a string from using wxConvLibc to convert it to Unicode.
|
||||
*/
|
||||
wxUString( char ch )
|
||||
wxUString( char ch );
|
||||
/**
|
||||
Constructs a string from a UTF-16 character.
|
||||
*/
|
||||
wxUString( wxChar16 ch )
|
||||
wxUString( wxChar16 ch );
|
||||
/**
|
||||
Constructs a string from 32-bit Unicode character.
|
||||
*/
|
||||
wxUString( wxChar32 ch )
|
||||
wxUString( wxChar32 ch );
|
||||
/**
|
||||
Constructs a string from wxUniChar (returned by wxString's access operator)
|
||||
*/
|
||||
wxUString( wxUniChar ch )
|
||||
wxUString( wxUniChar ch );
|
||||
/**
|
||||
Constructs a string from wxUniCharRef (returned by wxString's access operator)
|
||||
*/
|
||||
wxUString( wxUniCharRef ch )
|
||||
wxUString( wxUniCharRef ch );
|
||||
/**
|
||||
Constructs a string from @a n characters @a ch.
|
||||
*/
|
||||
wxUString( size_type n, char ch )
|
||||
wxUString( size_type n, char ch );
|
||||
/**
|
||||
Constructs a string from @a n characters @a ch.
|
||||
*/
|
||||
wxUString( size_type n, wxChar16 ch )
|
||||
wxUString( size_type n, wxChar16 ch );
|
||||
/**
|
||||
Constructs a string from @a n characters @a ch.
|
||||
*/
|
||||
wxUString( size_type n, wxChar32 ch )
|
||||
wxUString( size_type n, wxChar32 ch );
|
||||
/**
|
||||
Constructs a string from @a n characters @a ch.
|
||||
*/
|
||||
wxUString( size_type n, wxUniChar ch )
|
||||
wxUString( size_type n, wxUniChar ch );
|
||||
/**
|
||||
Constructs a string from @a n characters @a ch.
|
||||
*/
|
||||
wxUString( size_type n, wxUniCharRef ch )
|
||||
wxUString( size_type n, wxUniCharRef ch );
|
||||
|
||||
/**
|
||||
Static construction of a wxUString from a 7-bit ASCII string
|
||||
|
Reference in New Issue
Block a user