Fix for 41664, r=ben

This commit is contained in:
hyatt%netscape.com 2000-06-20 04:45:30 +00:00
parent 119cf30173
commit 2df6998f43
2 changed files with 4 additions and 2 deletions

View File

@ -4281,7 +4281,8 @@ nsXULElement::Click()
nsMouseEvent evt;
evt.eventStructType = NS_EVENT;
evt.message = NS_MENU_ACTION;
HandleDOMEvent(context, &evt, nsnull, NS_EVENT_FLAG_INIT, &status);
nsEventStatus sts = nsEventStatus_eIgnore;
HandleDOMEvent(context, &evt, nsnull, NS_EVENT_FLAG_INIT, &sts);
}
}
}

View File

@ -4281,7 +4281,8 @@ nsXULElement::Click()
nsMouseEvent evt;
evt.eventStructType = NS_EVENT;
evt.message = NS_MENU_ACTION;
HandleDOMEvent(context, &evt, nsnull, NS_EVENT_FLAG_INIT, &status);
nsEventStatus sts = nsEventStatus_eIgnore;
HandleDOMEvent(context, &evt, nsnull, NS_EVENT_FLAG_INIT, &sts);
}
}
}