diff options
Diffstat (limited to 'xfa/fwl/core/cfwl_noteloop.h')
-rw-r--r-- | xfa/fwl/core/cfwl_noteloop.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fwl/core/cfwl_noteloop.h b/xfa/fwl/core/cfwl_noteloop.h index f07bdc56a4..20bc03f560 100644 --- a/xfa/fwl/core/cfwl_noteloop.h +++ b/xfa/fwl/core/cfwl_noteloop.h @@ -7,20 +7,20 @@ #ifndef XFA_FWL_CORE_CFWL_NOTELOOP_H_ #define XFA_FWL_CORE_CFWL_NOTELOOP_H_ -class IFWL_Widget; +class CFWL_Widget; class CFWL_NoteLoop { public: CFWL_NoteLoop(); ~CFWL_NoteLoop() {} - IFWL_Widget* GetForm() const { return m_pForm; } + CFWL_Widget* GetForm() const { return m_pForm; } bool ContinueModal() const { return m_bContinueModal; } void EndModalLoop() { m_bContinueModal = false; } - void SetMainForm(IFWL_Widget* pForm) { m_pForm = pForm; } + void SetMainForm(CFWL_Widget* pForm) { m_pForm = pForm; } private: - IFWL_Widget* m_pForm; + CFWL_Widget* m_pForm; bool m_bContinueModal; }; |