| Index: fpdfsdk/src/javascript/Document.cpp
|
| diff --git a/fpdfsdk/src/javascript/Document.cpp b/fpdfsdk/src/javascript/Document.cpp
|
| index 3bbd3f01152185d823744ce0031b3656bebc066d..9ee96398138e3d67fed0b73c38f271e4306826d0 100644
|
| --- a/fpdfsdk/src/javascript/Document.cpp
|
| +++ b/fpdfsdk/src/javascript/Document.cpp
|
| @@ -1763,9 +1763,6 @@ FX_BOOL Document::removeIcon(OBJ_METHOD_PARAMS)
|
| if(!m_pIconTree)
|
| return FALSE;
|
| CFX_WideString swIconName = params[0].operator CFX_WideString();
|
| -#ifndef FOXIT_CHROME_BUILD
|
| - m_pIconTree->DeleteIconElement(swIconName);
|
| -#endif
|
| return TRUE;
|
| }
|
|
|
| @@ -2155,11 +2152,7 @@ FX_BOOL Document::deletePages(OBJ_METHOD_PARAMS)
|
|
|
|
|
|
|
| -#ifndef FOXIT_CHROME_BUILD
|
| - return m_pDocument->DeletePages(nStart, nEnd - nStart + 1);
|
| -#else
|
| return TRUE;
|
| -#endif
|
| }
|
|
|
| FX_BOOL Document::extractPages(OBJ_METHOD_PARAMS)
|
|
|