Bug 506628 deadcode in nsPluginInstanceOwner::ProcessEventX11Composited

r=karlt
This commit is contained in:
timeless@mozdev.org 2009-08-12 11:49:54 +02:00
Родитель ce03efff0f
Коммит 0fcff0c86c
1 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -4049,11 +4049,13 @@ nsEventStatus nsPluginInstanceOwner::ProcessEventX11Composited(const nsGUIEvent&
event.serial = 0;
event.send_event = False;
PRBool eventHandled = PR_FALSE;
#if 0
/* we've sent the event via XSendEvent so don't send it directly to the plugin */
//mInstance->HandleEvent(&pluginEvent, &eventHandled);
PRBool eventHandled = PR_FALSE;
mInstance->HandleEvent(&pluginEvent, &eventHandled);
if (eventHandled)
rv = nsEventStatus_eConsumeNoDefault;
rv = nsEventStatus_eConsumeNoDefault;
#endif
return rv;
}