diff options
author | dsinclair <dsinclair@chromium.org> | 2016-11-14 09:01:37 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-14 09:01:37 -0800 |
commit | c64b76c97c7f469ebd4126f314badceeb8a78b8b (patch) | |
tree | b2a77865503271247156447e30c9ab2a9db2f6f4 /xfa/fwl/core/cfwl_checkbox.h | |
parent | 27e66753c8bd6e664f26d05c1a468dc68be01913 (diff) | |
download | pdfium-c64b76c97c7f469ebd4126f314badceeb8a78b8b.tar.xz |
Cleanup remaining IFWL files for visiblity and usage.
This CL cleans up the remaining ifwl_* files to fixup visibility, remove
unused methods and remove unused FWL_Error return codes.
Review-Url: https://codereview.chromium.org/2502653002
Diffstat (limited to 'xfa/fwl/core/cfwl_checkbox.h')
-rw-r--r-- | xfa/fwl/core/cfwl_checkbox.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/xfa/fwl/core/cfwl_checkbox.h b/xfa/fwl/core/cfwl_checkbox.h index 730b906ba4..fb7a9ae1bf 100644 --- a/xfa/fwl/core/cfwl_checkbox.h +++ b/xfa/fwl/core/cfwl_checkbox.h @@ -17,17 +17,14 @@ class CFWL_CheckBox : public CFWL_Widget, public IFWL_CheckBoxDP { void Initialize(); - FWL_Error SetCaption(const CFX_WideStringC& wsCaption); - FWL_Error SetBoxSize(FX_FLOAT fHeight); - int32_t GetCheckState(); - FWL_Error SetCheckState(int32_t iCheck); - // IFWL_DataProvider void GetCaption(IFWL_Widget* pWidget, CFX_WideString& wsCaption) override; // IFWL_CheckBoxDP FX_FLOAT GetBoxSize(IFWL_Widget* pWidget) override; + void SetBoxSize(FX_FLOAT fHeight); + private: FX_FLOAT m_fBoxHeight; CFX_WideString m_wsCaption; |