From: Vadim Zeitlin Date: Mon, 3 Mar 2003 00:00:52 +0000 (+0000) Subject: fixed spurious assert in FindControl() (fixes patch 696147) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/652ab15353e042c7dbaa7c5ab6ba5e28595e64ed fixed spurious assert in FindControl() (fixes patch 696147) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19446 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/tbarbase.cpp b/src/common/tbarbase.cpp index 16589483c6..e2a1ccd70f 100644 --- a/src/common/tbarbase.cpp +++ b/src/common/tbarbase.cpp @@ -229,12 +229,20 @@ wxControl *wxToolBarBase::FindControl( int id ) node; node = node->GetNext() ) { - wxControl *control = node->GetData()->GetControl(); - - if (control) + const wxToolBarToolBase * const tool = node->GetData(); + if ( tool->IsControl() ) { - if (control->GetId() == id) + wxControl * const control = tool->GetControl(); + + if ( !control ) + { + wxFAIL_MSG( _T("NULL control in toolbar?") ); + } + else if ( control->GetId() == id ) + { + // found return control; + } } }