diff options
author | dsinclair <dsinclair@chromium.org> | 2016-12-15 10:32:23 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-12-15 10:32:23 -0800 |
commit | ea7657c883f3bcf9136c00b46450ca4053bee766 (patch) | |
tree | 5d7c134a891fb5713df0aa364dc9cb8a4dc7f21f /xfa/fwl/fwl_widgetdef.h | |
parent | 72a22025ec4402178cd0b27239bf77cf3a953949 (diff) | |
download | pdfium-ea7657c883f3bcf9136c00b46450ca4053bee766.tar.xz |
Remove unused sysbtn code
This CL removes the unused FWL_WGTSTYLE_MinimizeBox, FWL_WGTSTYLE_MaximizeBox,
and FWL_WGTSTYLE_CloseBox along with the supporting code.
Review-Url: https://codereview.chromium.org/2578603002
Diffstat (limited to 'xfa/fwl/fwl_widgetdef.h')
-rw-r--r-- | xfa/fwl/fwl_widgetdef.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/xfa/fwl/fwl_widgetdef.h b/xfa/fwl/fwl_widgetdef.h index a11c211abd..fd90fd3bab 100644 --- a/xfa/fwl/fwl_widgetdef.h +++ b/xfa/fwl/fwl_widgetdef.h @@ -7,13 +7,10 @@ #ifndef XFA_FWL_FWL_WIDGETDEF_H_ #define XFA_FWL_FWL_WIDGETDEF_H_ -#define FWL_WGTSTYLE_OverLapper (0L << 0) +#define FWL_WGTSTYLE_OverLapper 0 #define FWL_WGTSTYLE_Popup (1L << 0) #define FWL_WGTSTYLE_Child (2L << 0) #define FWL_WGTSTYLE_Border (1L << 2) -#define FWL_WGTSTYLE_MinimizeBox (1L << 6) -#define FWL_WGTSTYLE_MaximizeBox (1L << 7) -#define FWL_WGTSTYLE_CloseBox (1L << 8) #define FWL_WGTSTYLE_HScroll (1L << 9) #define FWL_WGTSTYLE_VScroll (1L << 11) #define FWL_WGTSTYLE_LeftScrollbar (1L << 12) |