mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
Bug 1379728 part 1. Remove the double-definition of the 'close' event from EventNameList.h.
Tag #1343
This commit is contained in:
parent
3b33af54af
commit
8b32eff646
2 changed files with 3 additions and 7 deletions
|
|
@ -174,7 +174,7 @@ EVENT(click,
|
|||
eMouseEventClass)
|
||||
EVENT(close,
|
||||
eClose,
|
||||
EventNameType_HTML,
|
||||
EventNameType_HTMLXUL,
|
||||
eBasicEventClass)
|
||||
EVENT(contextmenu,
|
||||
eContextMenu,
|
||||
|
|
@ -777,10 +777,6 @@ NON_IDL_EVENT(command,
|
|||
eXULCommand,
|
||||
EventNameType_XUL,
|
||||
eInputEventClass)
|
||||
NON_IDL_EVENT(close,
|
||||
eWindowClose,
|
||||
EventNameType_XUL,
|
||||
eBasicEventClass)
|
||||
NON_IDL_EVENT(popupshowing,
|
||||
eXULPopupShowing,
|
||||
EventNameType_XUL,
|
||||
|
|
|
|||
|
|
@ -323,7 +323,7 @@ nsWebShellWindow::RequestWindowClose(nsIWidget* aWidget)
|
|||
RefPtr<nsPresContext> presContext = presShell->GetPresContext();
|
||||
|
||||
nsEventStatus status = nsEventStatus_eIgnore;
|
||||
WidgetMouseEvent event(true, eWindowClose, nullptr,
|
||||
WidgetMouseEvent event(true, eClose, nullptr,
|
||||
WidgetMouseEvent::eReal);
|
||||
if (NS_SUCCEEDED(eventTarget->DispatchDOMEvent(&event, nullptr, presContext, &status)) &&
|
||||
status == nsEventStatus_eConsumeNoDefault)
|
||||
|
|
@ -759,7 +759,7 @@ bool nsWebShellWindow::ExecuteCloseHandler()
|
|||
contentViewer->GetPresContext(getter_AddRefs(presContext));
|
||||
|
||||
nsEventStatus status = nsEventStatus_eIgnore;
|
||||
WidgetMouseEvent event(true, eWindowClose, nullptr,
|
||||
WidgetMouseEvent event(true, eClose, nullptr,
|
||||
WidgetMouseEvent::eReal);
|
||||
|
||||
nsresult rv =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue