Remove crash due to reference being kept after object destroyed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@25863 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2004-02-19 15:04:54 +00:00
parent 272c6a23de
commit c8898a5e44

View File

@@ -357,7 +357,7 @@ void wxToolTip::SetWindow(wxWindow *win)
wxControl *control = wxDynamicCast(m_window, wxControl);
if ( control )
{
const wxArrayLong& subcontrols = control->GetSubcontrols();
const wxArrayLong subcontrols = control->GetSubcontrols();
size_t count = subcontrols.GetCount();
for ( size_t n = 0; n < count; n++ )
{