From a1c9e3decd54af6d77e00c633389490312e861d8 Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Tue, 29 Jul 2008 12:43:12 +0000 Subject: [PATCH] Minor formating git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54806 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/string.h | 2 +- interface/wx/ustring.h | 40 ++++++++++++++++++++-------------------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/interface/wx/string.h b/interface/wx/string.h index 2072e34e06..58ac520807 100644 --- a/interface/wx/string.h +++ b/interface/wx/string.h @@ -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"; diff --git a/interface/wx/ustring.h b/interface/wx/ustring.h index 3a0ab2bc8c..14bb5fd0e8 100644 --- a/interface/wx/ustring.h +++ b/interface/wx/ustring.h @@ -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 -- 2.45.2