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_txtedtengine.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_txtedtengine.h')
-rw-r--r-- | xfa/fde/cfde_txtedtengine.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/xfa/fde/cfde_txtedtengine.h b/xfa/fde/cfde_txtedtengine.h index afe55ce505..15d0f0cc77 100644 --- a/xfa/fde/cfde_txtedtengine.h +++ b/xfa/fde/cfde_txtedtengine.h @@ -18,8 +18,7 @@ class IFX_CharIter; class CFDE_TxtEdtEngine { public: CFDE_TxtEdtEngine(); - - void Release(); + ~CFDE_TxtEdtEngine(); void SetEditParams(const FDE_TXTEDTPARAMS& params); FDE_TXTEDTPARAMS* GetEditParams(); @@ -84,9 +83,6 @@ class CFDE_TxtEdtEngine { int32_t& nStartLine) const; FX_WCHAR GetAliasChar() const { return m_wcAliasChar; } - protected: - ~CFDE_TxtEdtEngine(); - private: friend class CFDE_TxtEdtDoRecord_Insert; friend class CFDE_TxtEdtDoRecord_DeleteRange; |