From b94d7c9216160269d43a722b8e216790ba4b5d3b Mon Sep 17 00:00:00 2001 From: dsinclair Date: Wed, 21 Sep 2016 12:07:00 -0700 Subject: Make the I in IFormFiller explicit Typically the I prefix means Interface, except for CFFL_IFormFiller where it means Interactive. Rename CFFL_IFormFiller to CFFL_InteractiveFormFiller to make the meaning explicit. Review-Url: https://codereview.chromium.org/2357203003 --- fpdfsdk/formfiller/cffl_textfield.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'fpdfsdk/formfiller/cffl_textfield.cpp') diff --git a/fpdfsdk/formfiller/cffl_textfield.cpp b/fpdfsdk/formfiller/cffl_textfield.cpp index aa3b87a09a..b80bbe4e17 100644 --- a/fpdfsdk/formfiller/cffl_textfield.cpp +++ b/fpdfsdk/formfiller/cffl_textfield.cpp @@ -83,9 +83,7 @@ CPWL_Wnd* CFFL_TextField::NewPDFWindow(const PWL_CREATEPARAM& cp, CPWL_Edit* pWnd = new CPWL_Edit(); pWnd->AttachFFLData(this); pWnd->Create(cp); - - CFFL_IFormFiller* pIFormFiller = m_pEnv->GetIFormFiller(); - pWnd->SetFillerNotify(pIFormFiller); + pWnd->SetFillerNotify(m_pEnv->GetInteractiveFormFiller()); int32_t nMaxLen = m_pWidget->GetMaxLen(); CFX_WideString swValue = m_pWidget->GetValue(); -- cgit v1.2.3