diff options
author | tsepez <tsepez@chromium.org> | 2016-05-16 15:42:58 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-16 15:42:58 -0700 |
commit | fa34e805fd03ba81bcfe1148cf96b24fe63b39a0 (patch) | |
tree | eb9ca58d4b4e327da346491f107d9b54925c18e3 /xfa/fxfa/parser/xfa_document_imp.cpp | |
parent | 44d83f3f0b90f4c53ca42115d4f1ed614b25c3a7 (diff) | |
download | pdfium-fa34e805fd03ba81bcfe1148cf96b24fe63b39a0.tar.xz |
Replace Release() { delete this; } in fde_xml_imp.h
Review-Url: https://codereview.chromium.org/1981003002
Diffstat (limited to 'xfa/fxfa/parser/xfa_document_imp.cpp')
-rw-r--r-- | xfa/fxfa/parser/xfa_document_imp.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xfa/fxfa/parser/xfa_document_imp.cpp b/xfa/fxfa/parser/xfa_document_imp.cpp index 0421683e07..3f1737a7f8 100644 --- a/xfa/fxfa/parser/xfa_document_imp.cpp +++ b/xfa/fxfa/parser/xfa_document_imp.cpp @@ -77,6 +77,12 @@ void CXFA_Document::SetRoot(CXFA_Node* pNewRoot) { m_pRootNode = pNewRoot; RemovePurgeNode(pNewRoot); } + +void CXFA_Document::DestroyParser() { + delete m_pParser; + m_pParser = nullptr; +} + CXFA_FFNotify* CXFA_Document::GetNotify() const { return m_pParser->GetNotify(); } |