summaryrefslogtreecommitdiff
path: root/fpdfsdk/cpdfsdk_formfillenvironment.cpp
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2017-06-20 17:26:44 -0700
committerChromium commit bot <commit-bot@chromium.org>2017-06-21 12:54:15 +0000
commitcddc8eddbd33e8e96540341eb9781403ae423b93 (patch)
treeb31f8929ab95beb844d6d99d47f51729a5f6417b /fpdfsdk/cpdfsdk_formfillenvironment.cpp
parent222e1a425e2d2199a842883dcc330a549f400630 (diff)
downloadpdfium-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/cpdfsdk_formfillenvironment.cpp')
-rw-r--r--fpdfsdk/cpdfsdk_formfillenvironment.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/fpdfsdk/cpdfsdk_formfillenvironment.cpp b/fpdfsdk/cpdfsdk_formfillenvironment.cpp
index 56eb367408..b0ee903ead 100644
--- a/fpdfsdk/cpdfsdk_formfillenvironment.cpp
+++ b/fpdfsdk/cpdfsdk_formfillenvironment.cpp
@@ -220,7 +220,7 @@ CPDFSDK_AnnotHandlerMgr* CPDFSDK_FormFillEnvironment::GetAnnotHandlerMgr() {
return m_pAnnotHandlerMgr.get();
}
-CPDFSDK_ActionHandler* CPDFSDK_FormFillEnvironment::GetActionHander() {
+CPDFSDK_ActionHandler* CPDFSDK_FormFillEnvironment::GetActionHandler() {
if (!m_pActionHandler)
m_pActionHandler = pdfium::MakeUnique<CPDFSDK_ActionHandler>();
return m_pActionHandler.get();
@@ -605,7 +605,7 @@ void CPDFSDK_FormFillEnvironment::ProcJavascriptFun() {
for (int i = 0; i < iCount; i++) {
CFX_ByteString csJSName;
CPDF_Action jsAction = docJS.GetJSActionAndName(i, &csJSName);
- GetActionHander()->DoAction_JavaScript(
+ GetActionHandler()->DoAction_JavaScript(
jsAction, CFX_WideString::FromLocal(csJSName.AsStringC()), this);
}
}
@@ -632,7 +632,7 @@ bool CPDFSDK_FormFillEnvironment::ProcOpenAction() {
return false;
CPDF_Action action(pDict);
- GetActionHander()->DoAction_DocOpen(action, this);
+ GetActionHandler()->DoAction_DocOpen(action, this);
return true;
}