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:
Paul Cornett
2011-01-08 17:33:51 +00:00
parent 16a2525ff2
commit 8528d60a8a

View File

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