summaryrefslogtreecommitdiff
path: root/core/fpdfdoc/cpdf_formfield.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-08-14 19:24:06 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-08-14 19:24:06 +0000
commit8c068b396dedc7d29ba7c107f03b2663520c11f1 (patch)
tree1aec18433367ef5eede3d07203191178789c986c /core/fpdfdoc/cpdf_formfield.h
parent46b437333e53295869afde696ed31043c1f6c717 (diff)
downloadpdfium-8c068b396dedc7d29ba7c107f03b2663520c11f1.tar.xz
Remove default level from FPDF_GetFieldAttr().
Make call into internal helper function. Write helper function so as to be obviously tail-recursive, and remove redundant null check. Change-Id: If29f9be66b07239b35de9ac9241d5ef72365889b Reviewed-on: https://pdfium-review.googlesource.com/40130 Reviewed-by: Lei Zhang <thestig@chromium.org> Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fpdfdoc/cpdf_formfield.h')
-rw-r--r--core/fpdfdoc/cpdf_formfield.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/core/fpdfdoc/cpdf_formfield.h b/core/fpdfdoc/cpdf_formfield.h
index b6a4ed82a9..6f0006506f 100644
--- a/core/fpdfdoc/cpdf_formfield.h
+++ b/core/fpdfdoc/cpdf_formfield.h
@@ -80,11 +80,8 @@ class CPDF_InterForm;
class CPDF_String;
const CPDF_Object* FPDF_GetFieldAttr(const CPDF_Dictionary* pFieldDict,
- const char* name,
- int nLevel = 0);
-CPDF_Object* FPDF_GetFieldAttr(CPDF_Dictionary* pFieldDict,
- const char* name,
- int nLevel = 0);
+ const char* name);
+CPDF_Object* FPDF_GetFieldAttr(CPDF_Dictionary* pFieldDict, const char* name);
WideString FPDF_GetFullName(CPDF_Dictionary* pFieldDict);