diff options
author | tsepez <tsepez@chromium.org> | 2017-01-03 14:18:07 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2017-01-03 14:18:08 -0800 |
commit | d654d7854951e0ed3589fcc34617c7ca593d9e86 (patch) | |
tree | 56b52bb20b658af9f7e3146570e2890eba8b2577 /xfa/fxfa/app/xfa_ffnotify.cpp | |
parent | 72f50f2021cd9f66016c962df8d27fc0c34748cd (diff) | |
download | pdfium-d654d7854951e0ed3589fcc34617c7ca593d9e86.tar.xz |
remove some CFX_ArrayTemplate in xfa_ffdocview.hchromium/2971
Review-Url: https://codereview.chromium.org/2593163002
Diffstat (limited to 'xfa/fxfa/app/xfa_ffnotify.cpp')
-rw-r--r-- | xfa/fxfa/app/xfa_ffnotify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/app/xfa_ffnotify.cpp b/xfa/fxfa/app/xfa_ffnotify.cpp index 4e14ab0203..cb1964cb45 100644 --- a/xfa/fxfa/app/xfa_ffnotify.cpp +++ b/xfa/fxfa/app/xfa_ffnotify.cpp @@ -326,7 +326,7 @@ void CXFA_FFNotify::OnNodeReady(CXFA_Node* pNode) { } switch (eType) { case XFA_Element::BindItems: - pDocView->m_BindItems.Add(pNode); + pDocView->m_BindItems.push_back(pNode); break; case XFA_Element::Validate: { pNode->SetFlag(XFA_NodeFlag_NeedsInitApp, false); |