fix for wxList copy ctor
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9049 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
9c31977bcc
commit
6108b321fc
@ -247,7 +247,7 @@ public:
|
||||
protected:
|
||||
// copy ctor and assignment operator
|
||||
wxListBase(const wxListBase& list)
|
||||
{ DoCopy(list); }
|
||||
{ Init(); DoCopy(list); }
|
||||
wxListBase& operator=(const wxListBase& list)
|
||||
{ Clear(); DoCopy(list); return *this; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user