git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49658
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
}
private:
+ // dtor doesn't have to be virtual as we're only ever deleted from our own
+ // Release() and are not meant to be derived form anyhow, but making it
+ // virtual silences gcc warnings; making it private makes it impossible to
+ // (mistakenly) delete us directly instead of calling Release()
+ virtual ~wxIEnumString() { }
+
+
const wxArrayString m_strings;
unsigned m_index;