Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(435)

Unified Diff: xfa/fxfa/parser/cxfa_document.cpp

Issue 2357203003: Make the I in IFormFiller explicit (Closed)
Patch Set: Remove locals Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « fpdfsdk/include/cpdfsdk_widgethandler.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxfa/parser/cxfa_document.cpp
diff --git a/xfa/fxfa/parser/cxfa_document.cpp b/xfa/fxfa/parser/cxfa_document.cpp
index 346690b484d84b0dedf23b30d7260977805ca470..a80d842325ee6f7f033e83b5d48ede244ef84a98 100644
--- a/xfa/fxfa/parser/cxfa_document.cpp
+++ b/xfa/fxfa/parser/cxfa_document.cpp
@@ -269,10 +269,10 @@ FX_BOOL CXFA_Document::IsInteractive() {
if (!pPDF)
return FALSE;
- CXFA_Node* pInteractive = pPDF->GetChild(0, XFA_Element::Interactive);
- if (pInteractive) {
+ CXFA_Node* pFormFiller = pPDF->GetChild(0, XFA_Element::Interactive);
+ if (pFormFiller) {
m_dwDocFlags |= XFA_DOCFLAG_HasInteractive;
- if (pInteractive->TryContent(wsInteractive) &&
+ if (pFormFiller->TryContent(wsInteractive) &&
wsInteractive == FX_WSTRC(L"1")) {
m_dwDocFlags |= XFA_DOCFLAG_Interactive;
return TRUE;
« no previous file with comments | « fpdfsdk/include/cpdfsdk_widgethandler.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698