Index: xfa/fwl/core/cfwl_event.h |
diff --git a/xfa/fwl/core/cfwl_event.h b/xfa/fwl/core/cfwl_event.h |
index b071fb7c9f7c9c2e09646136bf8927c2d52b67b0..cabb5838d0d8b13166e8926c69035a323cd02129 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_ |