diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2016-02-25 17:20:30 -0500 |
---|---|---|
committer | Dan Sinclair <dsinclair@chromium.org> | 2016-02-25 17:20:30 -0500 |
commit | 198362223d2257ded96895bd91df2bea422f361e (patch) | |
tree | 18f20dece89c011b527f2ff4d9440dc497e145ae /xfa/src/fee/include | |
parent | 9d8c29dbe9576a52b4f326fdce9d8ea669d26bff (diff) | |
download | pdfium-198362223d2257ded96895bd91df2bea422f361e.tar.xz |
Remove FDE_USEFORMATBLOCK.
This does not appear to ever be defined. There are a few methods which end up
being empty after this change, removed those and their callers as well.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1736133002 .
Diffstat (limited to 'xfa/src/fee/include')
-rw-r--r-- | xfa/src/fee/include/ifde_txtedtengine.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/xfa/src/fee/include/ifde_txtedtengine.h b/xfa/src/fee/include/ifde_txtedtengine.h index bddad4c788..6773b50195 100644 --- a/xfa/src/fee/include/ifde_txtedtengine.h +++ b/xfa/src/fee/include/ifde_txtedtengine.h @@ -228,17 +228,6 @@ class IFDE_TxtEdtEngine { const CFX_WideString& wsReplace) = 0; virtual void SetLimit(int32_t nLimit) = 0; virtual void SetAliasChar(FX_WCHAR wAlias) = 0; - virtual void SetFormatBlock(int32_t nIndex, - const CFX_WideString& wsBlockFormat) = 0; - virtual int32_t CountEditBlocks() const = 0; - virtual void GetEditBlockText(int32_t nIndex, - CFX_WideString& wsBlockText) const = 0; - virtual int32_t CountEditFields(int32_t nBlockIndex) const = 0; - virtual void GetEditFieldText(int32_t nBlockIndex, - int32_t nFieldIndex, - CFX_WideString& wsFieldText) const = 0; - virtual void StartEdit() = 0; - virtual void EndEdit() = 0; virtual void AddSelRange(int32_t nStart, int32_t nCount = -1) = 0; virtual int32_t CountSelRanges() = 0; virtual int32_t GetSelRange(int32_t nIndex, int32_t& nStart) = 0; |