summaryrefslogtreecommitdiff
path: root/fpdfsdk/pwl/cpwl_appstream.cpp
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2018-10-11 16:56:00 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-10-11 16:56:00 +0000
commit073ecf4192469ee4485c826dcee0cb8ece1b94a2 (patch)
treeaa6687acc434a24977b547144aa896168eaccc7b /fpdfsdk/pwl/cpwl_appstream.cpp
parentc345065e7aff3368198624f303e711a244e2f7ec (diff)
downloadpdfium-073ecf4192469ee4485c826dcee0cb8ece1b94a2.tar.xz
Rename InterForm classes to InteractiveForm.
Shorten some names to try to avoid CPDF_InteractiveForm* pInteractiveForm = GetInteractiveForm(); Change-Id: I77fafd6c4cce20aa46908830afde12f87784680e Reviewed-on: https://pdfium-review.googlesource.com/c/43815 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fpdfsdk/pwl/cpwl_appstream.cpp')
-rw-r--r--fpdfsdk/pwl/cpwl_appstream.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/fpdfsdk/pwl/cpwl_appstream.cpp b/fpdfsdk/pwl/cpwl_appstream.cpp
index dd86ef5d32..d57619e82f 100644
--- a/fpdfsdk/pwl/cpwl_appstream.cpp
+++ b/fpdfsdk/pwl/cpwl_appstream.cpp
@@ -1236,7 +1236,7 @@ void CPWL_AppStream::SetAsPushButton() {
CBA_FontMap font_map(
widget_.Get(),
- widget_->GetInterForm()->GetFormFillEnv()->GetSysHandler());
+ widget_->GetInteractiveForm()->GetFormFillEnv()->GetSysHandler());
font_map.SetAPType("N");
ByteString csAP =
@@ -1593,7 +1593,7 @@ void CPWL_AppStream::SetAsComboBox(Optional<WideString> sValue) {
// Font map must outlive |pEdit|.
CBA_FontMap font_map(
widget_.Get(),
- widget_->GetInterForm()->GetFormFillEnv()->GetSysHandler());
+ widget_->GetInteractiveForm()->GetFormFillEnv()->GetSysHandler());
auto pEdit = pdfium::MakeUnique<CPWL_EditImpl>();
pEdit->EnableRefresh(false);
@@ -1660,7 +1660,7 @@ void CPWL_AppStream::SetAsListBox() {
// Font map must outlive |pEdit|.
CBA_FontMap font_map(
widget_.Get(),
- widget_->GetInterForm()->GetFormFillEnv()->GetSysHandler());
+ widget_->GetInteractiveForm()->GetFormFillEnv()->GetSysHandler());
auto pEdit = pdfium::MakeUnique<CPWL_EditImpl>();
pEdit->EnableRefresh(false);
@@ -1745,7 +1745,7 @@ void CPWL_AppStream::SetAsTextField(Optional<WideString> sValue) {
// Font map must outlive |pEdit|.
CBA_FontMap font_map(
widget_.Get(),
- widget_->GetInterForm()->GetFormFillEnv()->GetSysHandler());
+ widget_->GetInteractiveForm()->GetFormFillEnv()->GetSysHandler());
auto pEdit = pdfium::MakeUnique<CPWL_EditImpl>();
pEdit->EnableRefresh(false);