| Index: xfa/fwl/core/cfwl_form.h
|
| diff --git a/xfa/fwl/core/ifwl_form.h b/xfa/fwl/core/cfwl_form.h
|
| similarity index 93%
|
| rename from xfa/fwl/core/ifwl_form.h
|
| rename to xfa/fwl/core/cfwl_form.h
|
| index 5c4c00dbf38f38004f7f264a4426953d9224f948..cb01c5b7a87f7ce9c272f2267504cca844e7cbf2 100644
|
| --- a/xfa/fwl/core/ifwl_form.h
|
| +++ b/xfa/fwl/core/cfwl_form.h
|
| @@ -4,8 +4,8 @@
|
|
|
| // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
|
|
|
| -#ifndef XFA_FWL_CORE_IFWL_FORM_H_
|
| -#define XFA_FWL_CORE_IFWL_FORM_H_
|
| +#ifndef XFA_FWL_CORE_CFWL_FORM_H_
|
| +#define XFA_FWL_CORE_CFWL_FORM_H_
|
|
|
| #include <memory>
|
|
|
| @@ -33,12 +33,12 @@ class IFWL_Widget;
|
| class IFWL_ThemeProvider;
|
| class CFWL_SysBtn;
|
|
|
| -class IFWL_Form : public IFWL_Widget {
|
| +class CFWL_Form : public IFWL_Widget {
|
| public:
|
| - IFWL_Form(const CFWL_App* app,
|
| + CFWL_Form(const CFWL_App* app,
|
| std::unique_ptr<CFWL_WidgetProperties> properties,
|
| IFWL_Widget* pOuter);
|
| - ~IFWL_Form() override;
|
| + ~CFWL_Form() override;
|
|
|
| // IFWL_Widget
|
| FWL_Type GetClassID() const override;
|
| @@ -98,4 +98,4 @@ class IFWL_Form : public IFWL_Widget {
|
| bool m_bDoModalFlag;
|
| };
|
|
|
| -#endif // XFA_FWL_CORE_IFWL_FORM_H_
|
| +#endif // XFA_FWL_CORE_CFWL_FORM_H_
|
|
|