Change m_SubControls from wxList to wxArrayLong

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6275 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster 2000-02-25 04:16:19 +00:00
parent c239a4bb76
commit b2a81bd914

View File

@ -12,6 +12,8 @@
#ifndef _WX_CONTROL_H_
#define _WX_CONTROL_H_
#include "wx/dynarray.h"
WXDLLEXPORT_DATA(extern const wxChar*) wxControlNameStr;
// General item class
@ -83,7 +85,7 @@ protected:
protected:
// For controls like radiobuttons which are really composite
wxList m_subControls;
wxArrayLong m_subControls;
virtual wxSize DoGetBestSize() const;