fix GCC warning about not explicitly initializing base class
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66654 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -45,7 +45,6 @@ public:
|
|||||||
wxUString() { }
|
wxUString() { }
|
||||||
|
|
||||||
wxUString( const wxChar32 *str ) { assign(str); }
|
wxUString( const wxChar32 *str ) { assign(str); }
|
||||||
wxUString( const wxUString &str ) { assign(str); }
|
|
||||||
wxUString( const wxScopedU32CharBuffer &buf ) { assign(buf); }
|
wxUString( const wxScopedU32CharBuffer &buf ) { assign(buf); }
|
||||||
|
|
||||||
wxUString( const char *str ) { assign(str); }
|
wxUString( const char *str ) { assign(str); }
|
||||||
@@ -579,8 +578,6 @@ public:
|
|||||||
|
|
||||||
|
|
||||||
// operator =
|
// operator =
|
||||||
wxUString& operator=(const wxUString& s)
|
|
||||||
{ return assign( s ); }
|
|
||||||
wxUString& operator=(const wxString& s)
|
wxUString& operator=(const wxString& s)
|
||||||
{ return assign( s ); }
|
{ return assign( s ); }
|
||||||
wxUString& operator=(const wxCStrData* s)
|
wxUString& operator=(const wxCStrData* s)
|
||||||
|
Reference in New Issue
Block a user