From: Paul Cornett Date: Sat, 8 Jan 2011 17:33:51 +0000 (+0000) Subject: fix GCC warning about not explicitly initializing base class X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8528d60a8a1225b57310ef12cb55f7ce07fbc762 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 --- diff --git a/include/wx/ustring.h b/include/wx/ustring.h index 0c00b6f9df..5b0d377e74 100644 --- a/include/wx/ustring.h +++ b/include/wx/ustring.h @@ -45,7 +45,6 @@ public: wxUString() { } wxUString( const wxChar32 *str ) { assign(str); } - wxUString( const wxUString &str ) { assign(str); } wxUString( const wxScopedU32CharBuffer &buf ) { assign(buf); } wxUString( const char *str ) { assign(str); } @@ -579,8 +578,6 @@ public: // operator = - wxUString& operator=(const wxUString& s) - { return assign( s ); } wxUString& operator=(const wxString& s) { return assign( s ); } wxUString& operator=(const wxCStrData* s)