diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-11-24 15:58:06 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-11-24 15:58:06 -0800 |
commit | d3116dc173ab3e798b056e008c0cb68f69acdca7 (patch) | |
tree | 6a04c92c71ad6f231a030ba33d65eebffdb61c7c /fpdfsdk/src/fpdfsave.cpp | |
parent | c98895c6a9d0809c2780f5180fa8054eeba04b2b (diff) | |
download | pdfium-d3116dc173ab3e798b056e008c0cb68f69acdca7.tar.xz |
XFA: DYNIMIC is spelled DYNAMIC
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1473053003 .
Diffstat (limited to 'fpdfsdk/src/fpdfsave.cpp')
-rw-r--r-- | fpdfsdk/src/fpdfsave.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fpdfsdk/src/fpdfsave.cpp b/fpdfsdk/src/fpdfsave.cpp index 8f9ee7794d..882161c8fe 100644 --- a/fpdfsdk/src/fpdfsave.cpp +++ b/fpdfsdk/src/fpdfsave.cpp @@ -64,7 +64,7 @@ FX_BOOL _SaveXFADocumentData(CPDFXFA_Document* pDocument, #ifdef PDF_ENABLE_XFA if (!pDocument) return FALSE; - if (pDocument->GetDocType() != DOCTYPE_DYNIMIC_XFA && + if (pDocument->GetDocType() != DOCTYPE_DYNAMIC_XFA && pDocument->GetDocType() != DOCTYPE_STATIC_XFA) return TRUE; if (!CPDFXFA_App::GetInstance()->GetXFAApp()) @@ -230,7 +230,7 @@ FX_BOOL _SendPostSaveToXFADoc(CPDFXFA_Document* pDocument) { if (!pDocument) return FALSE; - if (pDocument->GetDocType() != DOCTYPE_DYNIMIC_XFA && + if (pDocument->GetDocType() != DOCTYPE_DYNAMIC_XFA && pDocument->GetDocType() != DOCTYPE_STATIC_XFA) return TRUE; @@ -257,7 +257,7 @@ FX_BOOL _SendPostSaveToXFADoc(CPDFXFA_Document* pDocument) { FX_BOOL _SendPreSaveToXFADoc(CPDFXFA_Document* pDocument, CFX_PtrArray& fileList) { - if (pDocument->GetDocType() != DOCTYPE_DYNIMIC_XFA && + if (pDocument->GetDocType() != DOCTYPE_DYNAMIC_XFA && pDocument->GetDocType() != DOCTYPE_STATIC_XFA) return TRUE; IXFA_DocView* pXFADocView = pDocument->GetXFADocView(); |