Skip to content

Commit

Permalink
Fix bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
antony-liu committed Jan 12, 2020
1 parent 7da327f commit 7d3f0ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ooxml/XWPF/Usermodel/XWPFDocument.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<XWPFFooter> footers = new List<XWPFFooter>();
protected List<XWPFHeader> headers = new List<XWPFHeader>();
protected List<XWPFComment> comments = new List<XWPFComment>();
Expand Down

0 comments on commit 7d3f0ae

Please sign in to comment.