| Index: xfa/fwl/core/ifwl_widget.cpp
|
| diff --git a/xfa/fwl/core/ifwl_widget.cpp b/xfa/fwl/core/ifwl_widget.cpp
|
| index ca574b235604bdcfd5779eb95f268c510ff2c415..102ca2e0f0815b41aac61d26a31cc1878c89ba21 100644
|
| --- a/xfa/fwl/core/ifwl_widget.cpp
|
| +++ b/xfa/fwl/core/ifwl_widget.cpp
|
| @@ -584,8 +584,7 @@ bool IFWL_Widget::GetPopupPosGeneral(FX_FLOAT fMinHeight,
|
| return true;
|
| }
|
|
|
| -void IFWL_Widget::RegisterEventTarget(IFWL_Widget* pEventSource,
|
| - uint32_t dwFilter) {
|
| +void IFWL_Widget::RegisterEventTarget(IFWL_Widget* pEventSource) {
|
| const IFWL_App* pApp = GetOwnerApp();
|
| if (!pApp)
|
| return;
|
| @@ -594,7 +593,7 @@ void IFWL_Widget::RegisterEventTarget(IFWL_Widget* pEventSource,
|
| if (!pNoteDriver)
|
| return;
|
|
|
| - pNoteDriver->RegisterEventTarget(this, pEventSource, dwFilter);
|
| + pNoteDriver->RegisterEventTarget(this, pEventSource);
|
| }
|
|
|
| void IFWL_Widget::UnregisterEventTarget() {
|
|
|