| Index: xfa/fwl/core/cfwl_msgkey.cpp
|
| diff --git a/xfa/fwl/core/cfwl_msgkey.cpp b/xfa/fwl/core/cfwl_msgkey.cpp
|
| index 7d839f7203b1104bdf2e3da9a1ceeb2bd7a88287..3eda29ab499cc5ef4a75a8641fc682d14e6cab4a 100644
|
| --- a/xfa/fwl/core/cfwl_msgkey.cpp
|
| +++ b/xfa/fwl/core/cfwl_msgkey.cpp
|
| @@ -10,14 +10,11 @@
|
|
|
| #include "third_party/base/ptr_util.h"
|
|
|
| -CFWL_MsgKey::CFWL_MsgKey() {}
|
| +CFWL_MsgKey::CFWL_MsgKey(CFWL_Widget* pSrcTarget, CFWL_Widget* pDstTarget)
|
| + : CFWL_Message(CFWL_Message::Type::Key, pSrcTarget, pDstTarget) {}
|
|
|
| CFWL_MsgKey::~CFWL_MsgKey() {}
|
|
|
| std::unique_ptr<CFWL_Message> CFWL_MsgKey::Clone() {
|
| return pdfium::MakeUnique<CFWL_MsgKey>(*this);
|
| }
|
| -
|
| -CFWL_MessageType CFWL_MsgKey::GetClassID() const {
|
| - return CFWL_MessageType::Key;
|
| -}
|
|
|