From: David Webster Date: Fri, 25 Feb 2000 04:16:19 +0000 (+0000) Subject: Change m_SubControls from wxList to wxArrayLong X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b2a81bd91409092bb41b68e2384cf9d0baf47e48 Change m_SubControls from wxList to wxArrayLong git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6275 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/os2/control.h b/include/wx/os2/control.h index 467db17931..af4e392ff1 100644 --- a/include/wx/os2/control.h +++ b/include/wx/os2/control.h @@ -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;