Fix for a crashing bug when the next layout element after a radio button or checkbox

is not text.


git-svn-id: svn://10.0.0.236/trunk@1053 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
hyatt
1998-05-02 00:42:50 +00:00
parent a756b3b6a4
commit aa3283f7ca

View File

@@ -6750,8 +6750,11 @@ void CWinCX::invalidateElement( LO_Element *pElement )
pp = (LO_Any *)pElement->lo_any.next;
}
// for other Form element type( button, text input...), the widget handles the focus.
ResolveElement(Rect, pp->x, pp->y, pp->x_offset,pp->y_offset, pp->width, pp->height);
rectEmpty = FALSE;
if (pp)
{
ResolveElement(Rect, pp->x, pp->y, pp->x_offset,pp->y_offset, pp->width, pp->height);
rectEmpty = FALSE;
}
break;
case LO_TEXT :
// for a text(link), the element itself has a dotted box as focus.