diff options
author | dsinclair <dsinclair@chromium.org> | 2016-11-17 13:30:42 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-17 13:30:42 -0800 |
commit | bcf4695095caa8ecc1b2df25992a7d06d58d80ac (patch) | |
tree | 315c3cb7a30c605383481b88f2e493d674653feb /xfa/fwl/core/cfwl_event.h | |
parent | 3855f7ff0d4c5c8653fc17219bf65c4a0a95e8bb (diff) | |
download | pdfium-bcf4695095caa8ecc1b2df25992a7d06d58d80ac.tar.xz |
Remove FWL_EVENT_DEF macro
No longer used.
Review-Url: https://codereview.chromium.org/2506153003
Diffstat (limited to 'xfa/fwl/core/cfwl_event.h')
-rw-r--r-- | xfa/fwl/core/cfwl_event.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/xfa/fwl/core/cfwl_event.h b/xfa/fwl/core/cfwl_event.h index b071fb7c9f..cabb5838d0 100644 --- a/xfa/fwl/core/cfwl_event.h +++ b/xfa/fwl/core/cfwl_event.h @@ -64,16 +64,4 @@ class CFWL_Event { IFWL_Widget* m_pDstTarget; }; -#define FWL_EVENT_DEF(classname, eventType, ...) \ - class classname : public CFWL_Event { \ - public: \ - classname(); \ - ~classname() override; \ - CFWL_EventType GetClassID() const override; \ - __VA_ARGS__ \ - }; \ - inline classname::classname() {} \ - inline classname::~classname() {} \ - inline CFWL_EventType classname::GetClassID() const { return eventType; } - #endif // XFA_FWL_CORE_CFWL_EVENT_H_ |