Minor formating

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54806 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2008-07-29 12:43:12 +00:00
parent 7157abfba1
commit a1c9e3decd
2 changed files with 21 additions and 21 deletions

View File

@@ -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";

View File

@@ -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