diff options
author | tsepez <tsepez@chromium.org> | 2016-06-08 14:17:24 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-08 14:17:24 -0700 |
commit | 6aac8a822ef227b80173f23ea3169b28a6712bba (patch) | |
tree | cbc58444ac269f977e935740aee2dafab9c9c6ee /core/fpdfdoc/include | |
parent | c1835615f386d8e6e30df89b6517ebf605335a0e (diff) | |
download | pdfium-6aac8a822ef227b80173f23ea3169b28a6712bba.tar.xz |
Remove even more const casting from core.
Make the return types/arguments match reality.
Review-Url: https://codereview.chromium.org/2053483002
Diffstat (limited to 'core/fpdfdoc/include')
-rw-r--r-- | core/fpdfdoc/include/fpdf_doc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpdfdoc/include/fpdf_doc.h b/core/fpdfdoc/include/fpdf_doc.h index 0f65ee02b6..2722003743 100644 --- a/core/fpdfdoc/include/fpdf_doc.h +++ b/core/fpdfdoc/include/fpdf_doc.h @@ -533,7 +533,7 @@ class CPDF_InterForm { void LoadField(CPDF_Dictionary* pFieldDict, int nLevel = 0); CPDF_Object* GetFieldAttr(CPDF_Dictionary* pFieldDict, const FX_CHAR* name); CPDF_FormField* AddTerminalField(CPDF_Dictionary* pFieldDict); - CPDF_FormControl* AddControl(const CPDF_FormField* pField, + CPDF_FormControl* AddControl(CPDF_FormField* pField, CPDF_Dictionary* pWidgetDict); void FDF_ImportField(CPDF_Dictionary* pField, const CFX_WideString& parent_name, |