From e021e084717b8cc43f8a0667ad9d1a807dfe381c Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Wed, 9 Dec 2015 16:22:47 -0800 Subject: Fix errors in BEGIN_FWL_MESSAGE_DEF macros The proper way to "wide-stringify" a parameter is by L###arg, not L"## arg ##", which does no replacement. Also remove dubious CloneToEvent() method, and make the proper event in the one place it is called. R=thestig@chromium.org Review URL: https://codereview.chromium.org/1510493005 . --- xfa/src/fwl/src/core/fwl_widgetimp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xfa/src') diff --git a/xfa/src/fwl/src/core/fwl_widgetimp.cpp b/xfa/src/fwl/src/core/fwl_widgetimp.cpp index 95e235d12a..c48bfb9ca9 100644 --- a/xfa/src/fwl/src/core/fwl_widgetimp.cpp +++ b/xfa/src/fwl/src/core/fwl_widgetimp.cpp @@ -832,12 +832,12 @@ void CFWL_WidgetImp::UnregisterEventTarget() { void CFWL_WidgetImp::DispatchKeyEvent(CFWL_MsgKey* pNote) { if (!pNote) return; - CFWL_MsgKey* pEvent = (CFWL_MsgKey*)pNote->CloneToEvent(); + CFWL_EvtKey* pEvent = new CFWL_EvtKey; pEvent->m_pSrcTarget = m_pInterface; pEvent->m_dwCmd = pNote->m_dwCmd; pEvent->m_dwKeyCode = pNote->m_dwKeyCode; pEvent->m_dwFlags = pNote->m_dwFlags; - DispatchEvent((CFWL_Event*)pEvent); + DispatchEvent(pEvent); pEvent->Release(); } void CFWL_WidgetImp::DispatchEvent(CFWL_Event* pEvent) { -- cgit v1.2.3