Remove crash due to reference being kept after object destroyed

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

View File

@ -350,7 +350,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++ )
{