From 7d3f0ae75e2e4ec66e6771a58c722ce796d73603 Mon Sep 17 00:00:00 2001 From: antony liu Date: Sun, 12 Jan 2020 22:07:45 +0800 Subject: [PATCH] Fix bug. --- ooxml/XWPF/Usermodel/XWPFDocument.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ooxml/XWPF/Usermodel/XWPFDocument.cs b/ooxml/XWPF/Usermodel/XWPFDocument.cs index 89721b2bd..11db438a4 100644 --- a/ooxml/XWPF/Usermodel/XWPFDocument.cs +++ b/ooxml/XWPF/Usermodel/XWPFDocument.cs @@ -47,7 +47,7 @@ public class XWPFDocument : POIXMLDocument, Document, IBody /** * Keeps track on all id-values used in this document and included parts, like headers, footers, etc. */ - private IdentifierManager drawingIdManager = new IdentifierManager(1L, 4294967295L); + private IdentifierManager drawingIdManager = new IdentifierManager(0L, 4294967295L); protected List footers = new List(); protected List headers = new List(); protected List comments = new List();