diff options
author | tsepez <tsepez@chromium.org> | 2016-04-27 15:51:19 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-27 15:51:19 -0700 |
commit | 0e5f87a278e8502dc5c64e6882f4d2bf6c298783 (patch) | |
tree | 3c828de230a5a3ec0ac96b766a3eacb9d58945ca /xfa/fxfa/app/xfa_ffnotify.cpp | |
parent | 15bfe1bd8b28f9654dcea4af51305e3559a78cd8 (diff) | |
download | pdfium-0e5f87a278e8502dc5c64e6882f4d2bf6c298783.tar.xz |
Replace CFX_PtrArray with type-safe CFX_ArrayTemplate, Part 2
Capitalize m_bindItems while we're at it.
Review-Url: https://codereview.chromium.org/1932513002
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 571593fc63..b6e64d04b7 100644 --- a/xfa/fxfa/app/xfa_ffnotify.cpp +++ b/xfa/fxfa/app/xfa_ffnotify.cpp @@ -327,7 +327,7 @@ void CXFA_FFNotify::OnNodeReady(CXFA_Node* pNode) { } switch (iType) { case XFA_ELEMENT_BindItems: - pDocView->m_bindItems.Add(pNode); + pDocView->m_BindItems.Add(pNode); break; case XFA_ELEMENT_Validate: { pNode->SetFlag(XFA_NODEFLAG_NeedsInitApp, false); |