diff options
author | tsepez <tsepez@chromium.org> | 2016-10-13 16:36:20 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-13 16:36:20 -0700 |
commit | 1d023881cd53485303c0fcc0b5878e700dc470fd (patch) | |
tree | 0f41370ff729b0495f475887a3f6f38a0210aae4 /xfa/fxfa | |
parent | 20f8ecc2f44332792c11cf0ac566c0114712b83c (diff) | |
download | pdfium-1d023881cd53485303c0fcc0b5878e700dc470fd.tar.xz |
Make CPDF_Object containers hold objects via unique pointers.
This tweaks the implementation while leaving the API the
same. The API change is more disruptive, so break this
part off first.
Review-Url: https://codereview.chromium.org/2385293002
Diffstat (limited to 'xfa/fxfa')
-rw-r--r-- | xfa/fxfa/app/xfa_fontmgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/app/xfa_fontmgr.cpp b/xfa/fxfa/app/xfa_fontmgr.cpp index 6e54c41408..bb271845a3 100644 --- a/xfa/fxfa/app/xfa_fontmgr.cpp +++ b/xfa/fxfa/app/xfa_fontmgr.cpp @@ -1839,7 +1839,7 @@ CFGAS_GEFont* CXFA_PDFFontMgr::FindFont(const CFX_ByteString& strPsName, IFGAS_FontMgr* pFDEFontMgr = m_pDoc->GetApp()->GetFDEFontMgr(); for (const auto& it : *pFontSetDict) { const CFX_ByteString& key = it.first; - CPDF_Object* pObj = it.second; + CPDF_Object* pObj = it.second.get(); if (!PsNameMatchDRFontName(name.AsStringC(), bBold, bItalic, key, bStrictMatch)) { continue; |