diff options
author | Lei Zhang <thestig@chromium.org> | 2017-06-20 17:26:44 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-06-21 12:54:15 +0000 |
commit | cddc8eddbd33e8e96540341eb9781403ae423b93 (patch) | |
tree | b31f8929ab95beb844d6d99d47f51729a5f6417b /fpdfsdk/fpdfformfill.cpp | |
parent | 222e1a425e2d2199a842883dcc330a549f400630 (diff) | |
download | pdfium-cddc8eddbd33e8e96540341eb9781403ae423b93.tar.xz |
Fix typos that meant to say handler instead of hander.
Change-Id: I60f556f107f740b854237bc89184b09e4f1d2585
Reviewed-on: https://pdfium-review.googlesource.com/6790
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/fpdfformfill.cpp')
-rw-r--r-- | fpdfsdk/fpdfformfill.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpdfsdk/fpdfformfill.cpp b/fpdfsdk/fpdfformfill.cpp index 08d3d30847..12feb791be 100644 --- a/fpdfsdk/fpdfformfill.cpp +++ b/fpdfsdk/fpdfformfill.cpp @@ -712,7 +712,7 @@ DLLEXPORT void STDCALL FORM_DoDocumentAAction(FPDF_FORMHANDLE hHandle, if (aa.ActionExist(type)) { CPDF_Action action = aa.GetAction(type); CPDFSDK_ActionHandler* pActionHandler = - HandleToCPDFSDKEnvironment(hHandle)->GetActionHander(); + HandleToCPDFSDKEnvironment(hHandle)->GetActionHandler(); pActionHandler->DoAction_Document(action, type, pFormFillEnv); } } @@ -733,7 +733,7 @@ DLLEXPORT void STDCALL FORM_DoPageAAction(FPDF_PAGE page, if (!pFormFillEnv->GetPageView(pPage, false)) return; - CPDFSDK_ActionHandler* pActionHandler = pFormFillEnv->GetActionHander(); + CPDFSDK_ActionHandler* pActionHandler = pFormFillEnv->GetActionHandler(); CPDF_Dictionary* pPageDict = pPDFPage->m_pFormDict.Get(); CPDF_AAction aa(pPageDict->GetDictFor("AA")); CPDF_AAction::AActionType type = aaType == FPDFPAGE_AACTION_OPEN |