diff options
author | dsinclair <dsinclair@chromium.org> | 2016-11-17 07:39:35 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-17 07:39:35 -0800 |
commit | d5670482c19cff27997c3c94aa2efa142ae36259 (patch) | |
tree | be793c070e250f9448e674b2ef7558df46ac94f0 /xfa/fwl/core/ifwl_edit.h | |
parent | 0baa5c719a44875789898e12c247b8c719c27815 (diff) | |
download | pdfium-d5670482c19cff27997c3c94aa2efa142ae36259.tar.xz |
Remove SelfAdaption code
Nothing listens for CFWL_Event::PreSelfAdaption events and nothing sets the
HSelfAdaption or VSelfAdaption flags into IFWL_Edit. Removing code.
Review-Url: https://codereview.chromium.org/2514443002
Diffstat (limited to 'xfa/fwl/core/ifwl_edit.h')
-rw-r--r-- | xfa/fwl/core/ifwl_edit.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/xfa/fwl/core/ifwl_edit.h b/xfa/fwl/core/ifwl_edit.h index 262d16e8f0..0f8b7a1219 100644 --- a/xfa/fwl/core/ifwl_edit.h +++ b/xfa/fwl/core/ifwl_edit.h @@ -28,8 +28,6 @@ #define FWL_STYLEEXT_EDT_Validate (1L << 7) #define FWL_STYLEEXT_EDT_Password (1L << 8) #define FWL_STYLEEXT_EDT_Number (1L << 9) -#define FWL_STYLEEXT_EDT_HSelfAdaption (1L << 10) -#define FWL_STYLEEXT_EDT_VSelfAdaption (1L << 11) #define FWL_STYLEEXT_EDT_VerticalLayout (1L << 12) #define FWL_STYLEEXT_EDT_VerticalChars (1L << 13) #define FWL_STYLEEXT_EDT_ReverseLine (1L << 14) @@ -67,12 +65,6 @@ FWL_EVENT_DEF(CFWL_EvtEdtTextChanged, FWL_EVENT_DEF(CFWL_EvtEdtTextFull, CFWL_EventType::TextFull) -FWL_EVENT_DEF(CFWL_EvtEdtPreSelfAdaption, - CFWL_EventType::PreSelfAdaption, - bool bHSelfAdaption; - bool bVSelfAdaption; - CFX_RectF rtAfterChange;) - FWL_EVENT_DEF(CFWL_EvtEdtValidate, CFWL_EventType::Validate, IFWL_Widget* pDstWidget; |