From: David Webster <Dave.Webster@bhmi.com>
Date: Tue, 22 Feb 2000 17:19:38 +0000 (+0000)
Subject: GetSubcontrols now returns a reference to an Arraylong
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f9380570921e22b1037b9415f64b299669a23e88

GetSubcontrols now returns a reference to an Arraylong


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6216 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/include/wx/os2/control.h b/include/wx/os2/control.h
index 604e2f1a79..467db17931 100644
--- a/include/wx/os2/control.h
+++ b/include/wx/os2/control.h
@@ -59,7 +59,7 @@ public:
    virtual bool OS2OnDraw(WXDRAWITEMSTRUCT *WXUNUSED(item)) { return FALSE; };
    virtual bool OS2OnMeasure(WXMEASUREITEMSTRUCT *WXUNUSED(item)) { return FALSE; };
 
-   wxList& GetSubcontrols() { return m_subControls; }
+   wxArrayLong& GetSubcontrols() { return m_subControls; }
 
    void OnEraseBackground(wxEraseEvent& event);