| Index: fpdfsdk/javascript/Field.cpp
|
| diff --git a/fpdfsdk/javascript/Field.cpp b/fpdfsdk/javascript/Field.cpp
|
| index 8d7fe1b1865206fcb48b6048ba1df0aeb3492528..ee910329d5a591a328866b15d147510740c522c9 100644
|
| --- a/fpdfsdk/javascript/Field.cpp
|
| +++ b/fpdfsdk/javascript/Field.cpp
|
| @@ -2225,8 +2225,6 @@ FX_BOOL Field::richText(IJS_Context* cc,
|
|
|
| if (m_bDelay) {
|
| AddDelay_Bool(FP_RICHTEXT, bVP);
|
| - } else {
|
| - Field::SetRichText(m_pDocument, m_FieldName, m_nFormControlIndex, bVP);
|
| }
|
| } else {
|
| std::vector<CPDF_FormField*> FieldArray = GetFormFields(m_FieldName);
|
| @@ -2246,25 +2244,12 @@ FX_BOOL Field::richText(IJS_Context* cc,
|
| return TRUE;
|
| }
|
|
|
| -void Field::SetRichText(CPDFSDK_Document* pDocument,
|
| - const CFX_WideString& swFieldName,
|
| - int nControlIndex,
|
| - bool b) {
|
| - // Not supported.
|
| -}
|
| -
|
| FX_BOOL Field::richValue(IJS_Context* cc,
|
| CJS_PropValue& vp,
|
| CFX_WideString& sError) {
|
| return TRUE;
|
| }
|
|
|
| -void Field::SetRichValue(CPDFSDK_Document* pDocument,
|
| - const CFX_WideString& swFieldName,
|
| - int nControlIndex) {
|
| - // Not supported.
|
| -}
|
| -
|
| FX_BOOL Field::rotation(IJS_Context* cc,
|
| CJS_PropValue& vp,
|
| CFX_WideString& sError) {
|
| @@ -3506,8 +3491,7 @@ void Field::DoDelay(CPDFSDK_Document* pDocument, CJS_DelayData* pData) {
|
| pData->rect);
|
| break;
|
| case FP_RICHTEXT:
|
| - Field::SetRichText(pDocument, pData->sFieldName, pData->nControlIndex,
|
| - pData->b);
|
| + // Not supported.
|
| break;
|
| case FP_RICHVALUE:
|
| break;
|
|
|