diff options
author | tsepez <tsepez@chromium.org> | 2016-05-17 13:42:51 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-17 13:42:51 -0700 |
commit | 8bdb290b9301200aeafa8b89678e690166ba1ce6 (patch) | |
tree | d4f6e474169f0a3ce1e435ac5571883bacb10f57 /xfa/fee/fde_txtedtbuf.cpp | |
parent | 992def065be348d6f8157fab75aee312f5f45558 (diff) | |
download | pdfium-8bdb290b9301200aeafa8b89678e690166ba1ce6.tar.xz |
Remove Release() from IFX_CharIter, use unique_ptrs.chromium/2742chromium/2741
Review-Url: https://codereview.chromium.org/1986373002
Diffstat (limited to 'xfa/fee/fde_txtedtbuf.cpp')
-rw-r--r-- | xfa/fee/fde_txtedtbuf.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/xfa/fee/fde_txtedtbuf.cpp b/xfa/fee/fde_txtedtbuf.cpp index c9ad39252b..def92012e0 100644 --- a/xfa/fee/fde_txtedtbuf.cpp +++ b/xfa/fee/fde_txtedtbuf.cpp @@ -29,10 +29,9 @@ CFDE_TxtEdtBufIter::CFDE_TxtEdtBufIter(CFDE_TxtEdtBuf* pBuf, FX_WCHAR wcAlias) m_Alias(wcAlias) { ASSERT(m_pBuf); } + CFDE_TxtEdtBufIter::~CFDE_TxtEdtBufIter() {} -void CFDE_TxtEdtBufIter::Release() { - delete this; -} + FX_BOOL CFDE_TxtEdtBufIter::Next(FX_BOOL bPrev) { if (bPrev) { if (m_nIndex == 0) { |