| Index: fpdfsdk/src/javascript/Document.cpp
|
| diff --git a/fpdfsdk/src/javascript/Document.cpp b/fpdfsdk/src/javascript/Document.cpp
|
| index 0a85cece894a13ad509070dac1e53d0e9fce568a..9a434a5db720324aa36708cdf15a685f72c3455f 100644
|
| --- a/fpdfsdk/src/javascript/Document.cpp
|
| +++ b/fpdfsdk/src/javascript/Document.cpp
|
| @@ -159,7 +159,6 @@ Document::~Document() {
|
| }
|
|
|
| m_DelayData.RemoveAll();
|
| - m_DelayAnnotData.RemoveAll();
|
| }
|
|
|
| // the total number of fileds in document.
|
| @@ -1700,18 +1699,6 @@ void Document::DoFieldDelay(const CFX_WideString& sFieldName,
|
| }
|
| }
|
|
|
| -void Document::AddDelayAnnotData(CJS_AnnotObj* pData) {
|
| - m_DelayAnnotData.Add(pData);
|
| -}
|
| -
|
| -void Document::DoAnnotDelay() {
|
| - CFX_DWordArray DelArray;
|
| -
|
| - for (int j = DelArray.GetSize() - 1; j >= 0; j--) {
|
| - m_DelayData.RemoveAt(DelArray[j]);
|
| - }
|
| -}
|
| -
|
| CJS_Document* Document::GetCJSDoc() const {
|
| return static_cast<CJS_Document*>(m_pJSObject);
|
| }
|
|
|