diff options
author | jaepark <jaepark@google.com> | 2016-07-12 19:50:51 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-07-12 19:50:51 -0700 |
commit | 38506d3334fe114fb386ea9b719d432ff1760e42 (patch) | |
tree | cec9fe77912e4be12af049f2dcefb95aefc56e00 /core/fpdfdoc/include | |
parent | df4044dc522c2049bfbab79faaa9e905c606888f (diff) | |
download | pdfium-38506d3334fe114fb386ea9b719d432ff1760e42.tar.xz |
Rename methods in CPDF_Interform.
EnableUpdateAP acutally sets s_bUpdateAP to the given parameter. So
SetUpdateAP is accurate method name.
Review-Url: https://codereview.chromium.org/2140423002
Diffstat (limited to 'core/fpdfdoc/include')
-rw-r--r-- | core/fpdfdoc/include/fpdf_doc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fpdfdoc/include/fpdf_doc.h b/core/fpdfdoc/include/fpdf_doc.h index be52a1b829..fd5dde09a0 100644 --- a/core/fpdfdoc/include/fpdf_doc.h +++ b/core/fpdfdoc/include/fpdf_doc.h @@ -441,8 +441,8 @@ class CPDF_InterForm { explicit CPDF_InterForm(CPDF_Document* pDocument); ~CPDF_InterForm(); - static void EnableUpdateAP(FX_BOOL bUpdateAP); - static FX_BOOL UpdatingAPEnabled(); + static void SetUpdateAP(FX_BOOL bUpdateAP); + static FX_BOOL IsUpdateAPEnabled(); static CFX_ByteString GenerateNewResourceName(const CPDF_Dictionary* pResDict, const FX_CHAR* csType, int iMinLen = 2, |