]> git.saurik.com Git - wxWidgets.git/commitdiff
Change m_SubControls from wxList to wxArrayLong
authorDavid Webster <Dave.Webster@bhmi.com>
Fri, 25 Feb 2000 04:16:19 +0000 (04:16 +0000)
committerDavid Webster <Dave.Webster@bhmi.com>
Fri, 25 Feb 2000 04:16:19 +0000 (04:16 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6275 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/os2/control.h

index 467db17931b16ae450a2f94d7ce6ac94acfa7a82..af4e392ff1ae8257ce3638b5b77eed0b3c9cab6b 100644 (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;