]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/ustring.h
Don't enable dialog navigation inside wxFrame by default.
[wxWidgets.git] / include / wx / ustring.h
index 0c00b6f9df3ccb779c7fbde9e1b2223c9167ed89..7c58fddd8a62ae558ad0dcb8c8015b8887bcaea7 100644 (file)
@@ -3,7 +3,6 @@
 // Purpose:     32-bit string (UCS-4)
 // Author:      Robert Roebling
 // Copyright:   (c) Robert Roebling
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -45,7 +44,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 +577,6 @@ public:
 
 
     // operator =
-    wxUString& operator=(const wxUString& s)
-        { return assign( s ); }
     wxUString& operator=(const wxString& s)
         { return assign( s ); }
     wxUString& operator=(const wxCStrData* s)