summaryrefslogtreecommitdiff
path: root/xfa/fwl/core/cfwl_eventtarget.h
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fwl/core/cfwl_eventtarget.h')
-rw-r--r--xfa/fwl/core/cfwl_eventtarget.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/xfa/fwl/core/cfwl_eventtarget.h b/xfa/fwl/core/cfwl_eventtarget.h
index 3ed8e9a4b7..5f0ee35b9b 100644
--- a/xfa/fwl/core/cfwl_eventtarget.h
+++ b/xfa/fwl/core/cfwl_eventtarget.h
@@ -13,22 +13,22 @@
#include "xfa/fwl/core/cfwl_event.h"
class CFWL_Event;
-class IFWL_Widget;
+class CFWL_Widget;
class CFWL_EventTarget {
public:
- explicit CFWL_EventTarget(IFWL_Widget* pListener);
+ explicit CFWL_EventTarget(CFWL_Widget* pListener);
~CFWL_EventTarget();
- void SetEventSource(IFWL_Widget* pSource);
+ void SetEventSource(CFWL_Widget* pSource);
bool ProcessEvent(CFWL_Event* pEvent);
bool IsInvalid() const { return m_bInvalid; }
void FlagInvalid() { m_bInvalid = true; }
private:
- std::set<IFWL_Widget*> m_widgets;
- IFWL_Widget* m_pListener;
+ std::set<CFWL_Widget*> m_widgets;
+ CFWL_Widget* m_pListener;
bool m_bInvalid;
};