diff options
author | tsepez <tsepez@chromium.org> | 2016-05-18 14:16:03 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-18 14:16:03 -0700 |
commit | 87144d3fc81769578fbfae89f7b99bab89229a57 (patch) | |
tree | 5b1a9b8d4b721a5dfbd91593a141d3c4e4256953 /xfa/fde/cfde_txtedtbuf.h | |
parent | 0aae2a773cf51632b7808ab0e5b5c1635cf6a5fa (diff) | |
download | pdfium-87144d3fc81769578fbfae89f7b99bab89229a57.tar.xz |
Remove Release() from CFDE_TxtEdit* classes
Review-Url: https://codereview.chromium.org/1987223003
Diffstat (limited to 'xfa/fde/cfde_txtedtbuf.h')
-rw-r--r-- | xfa/fde/cfde_txtedtbuf.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/xfa/fde/cfde_txtedtbuf.h b/xfa/fde/cfde_txtedtbuf.h index 0007fa4acd..1d8e48e338 100644 --- a/xfa/fde/cfde_txtedtbuf.h +++ b/xfa/fde/cfde_txtedtbuf.h @@ -16,8 +16,8 @@ class IFX_Pause; class CFDE_TxtEdtBuf { public: CFDE_TxtEdtBuf(); + ~CFDE_TxtEdtBuf(); - void Release(); FX_BOOL SetChunkSize(int32_t nChunkSize); int32_t GetChunkSize() const; int32_t GetTextLength() const; @@ -34,9 +34,6 @@ class CFDE_TxtEdtBuf { FX_BOOL Optimize(IFX_Pause* pPause = nullptr); - protected: - ~CFDE_TxtEdtBuf(); - private: friend class CFDE_TxtEdtBufIter; |