suppress an assert when a combobox receives WM_KILLFOCUS while it is being destroyed
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15829 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -96,11 +96,22 @@ LRESULT APIENTRY _EXPORT wxComboEditWndProc(HWND hWnd,
|
|||||||
case WM_KILLFOCUS:
|
case WM_KILLFOCUS:
|
||||||
{
|
{
|
||||||
wxComboBox *combo = wxDynamicCast(win, wxComboBox);
|
wxComboBox *combo = wxDynamicCast(win, wxComboBox);
|
||||||
wxCHECK_MSG( combo, 0, _T("should have combo as parent") );
|
if ( !combo )
|
||||||
|
{
|
||||||
if ( combo->MSWProcessEditMsg(message, wParam, lParam) )
|
// we can get WM_KILLFOCUS while our parent is already half
|
||||||
|
// destroyed and hence doesn't look like a combobx any
|
||||||
|
// longer, check for it to avoid bogus assert failures
|
||||||
|
if ( !win->IsBeingDeleted() )
|
||||||
|
{
|
||||||
|
wxFAIL_MSG( _T("should have combo as parent") );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if ( combo->MSWProcessEditMsg(message, wParam, lParam) )
|
||||||
|
{
|
||||||
|
// handled by parent
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
Reference in New Issue
Block a user