Remove FWL_EVENT_DEF macro
No longer used.
Review-Url: https://codereview.chromium.org/2506153003
diff --git a/xfa/fwl/core/cfwl_event.h b/xfa/fwl/core/cfwl_event.h
index b071fb7..cabb583 100644
--- a/xfa/fwl/core/cfwl_event.h
+++ b/xfa/fwl/core/cfwl_event.h
@@ -64,16 +64,4 @@
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_