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; }
{
public:
wxList(int key_type = wxKEY_NONE) : wxObjectList((wxKeyType)key_type) { }
+#ifdef __WXMAC_X__
+ ~wxList() {} // Added min for Mac X
+#endif
wxList& operator=(const wxList& list)
{ return (wxList&)wxListBase::operator=(list); }