Index: core/src/fpdfapi/fpdf_edit/fpdf_edit_doc.cpp |
diff --git a/core/src/fpdfapi/fpdf_edit/fpdf_edit_doc.cpp b/core/src/fpdfapi/fpdf_edit/fpdf_edit_doc.cpp |
index 2dd2911e932d4370eda6673d788dbf7ddbfc862a..19786f74518e135bfed23af7394d3ab9d9d2725b 100644 |
--- a/core/src/fpdfapi/fpdf_edit/fpdf_edit_doc.cpp |
+++ b/core/src/fpdfapi/fpdf_edit/fpdf_edit_doc.cpp |
@@ -1053,26 +1053,6 @@ CPDF_Font* CPDF_Document::AddFont(CFX_Font* pFont, int charset, FX_BOOL bVert) |
pFontDict->SetAtReference("FontDescriptor", this, pFontDesc); |
return LoadFont(pBaseDict); |
} |
-static CPDF_Stream* GetFormStream(CPDF_Document* pDoc, CPDF_Object* pResObj) |
-{ |
- if (pResObj->GetType() != PDFOBJ_REFERENCE) { |
- return NULL; |
- } |
- CPDF_Reference* pRef = (CPDF_Reference*)pResObj; |
- FX_BOOL bForm; |
- if (pDoc->IsFormStream(pRef->GetRefObjNum(), bForm) && !bForm) { |
- return NULL; |
- } |
- pResObj = pRef->GetDirect(); |
- if (pResObj->GetType() != PDFOBJ_STREAM) { |
- return NULL; |
- } |
- CPDF_Stream* pXObject = (CPDF_Stream*)pResObj; |
- if (pXObject->GetDict()->GetString(FX_BSTRC("Subtype")) != FX_BSTRC("Form")) { |
- return NULL; |
- } |
- return pXObject; |
-} |
static int InsertDeletePDFPage(CPDF_Document* pDoc, CPDF_Dictionary* pPages, |
int nPagesToGo, CPDF_Dictionary* pPage, FX_BOOL bInsert, CFX_PtrArray& stackList) |
{ |