| Index: fpdfsdk/formfiller/cffl_radiobutton.cpp
|
| diff --git a/fpdfsdk/formfiller/cffl_radiobutton.cpp b/fpdfsdk/formfiller/cffl_radiobutton.cpp
|
| index 8e782d0eb931d545b907c7bb0a17592161faff38..17573fd625bc420715960423e9488ccfee36f9d5 100644
|
| --- a/fpdfsdk/formfiller/cffl_radiobutton.cpp
|
| +++ b/fpdfsdk/formfiller/cffl_radiobutton.cpp
|
| @@ -46,15 +46,13 @@ FX_BOOL CFFL_RadioButton::OnChar(CPDFSDK_Annot* pAnnot,
|
| switch (nChar) {
|
| case FWL_VKEY_Return:
|
| case FWL_VKEY_Space: {
|
| - CFFL_IFormFiller* pIFormFiller = m_pEnv->GetIFormFiller();
|
| CPDFSDK_PageView* pPageView = pAnnot->GetPageView();
|
| ASSERT(pPageView);
|
|
|
| FX_BOOL bReset = FALSE;
|
| FX_BOOL bExit = FALSE;
|
| -
|
| - pIFormFiller->OnButtonUp(m_pWidget, pPageView, bReset, bExit, nFlags);
|
| -
|
| + m_pEnv->GetInteractiveFormFiller()->OnButtonUp(m_pWidget, pPageView,
|
| + bReset, bExit, nFlags);
|
| if (bReset)
|
| return TRUE;
|
| if (bExit)
|
|
|