Skip to content

Commit

Permalink
Merge pull request #1362 from hahschaa/bugfix/incorrect-nsid-for-abst…
Browse files Browse the repository at this point in the history
…ract-num

Fixed bug raised in issue  #1358
  • Loading branch information
tonyqus committed Jun 6, 2024
2 parents 7110660 + ec28628 commit f42c080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenXmlFormats/Wordprocessing/Numbering.cs
Original file line number Diff line number Diff line change
Expand Up @@ -971,7 +971,7 @@ public CT_AbstractNum()
this.multiLevelTypeField = new CT_MultiLevelType();
this.nsidField = new CT_LongHexNumber();
this.nsidField.val = new byte[4];
Array.Copy(BitConverter.GetBytes(DateTime.Now.Ticks), 4, this.nsidField.val, 0, 4);
Array.Copy(BitConverter.GetBytes(DateTime.Now.Ticks), 0, this.nsidField.val, 0, 4);
}

[XmlElement(Order = 0)]
Expand Down

0 comments on commit f42c080

Please sign in to comment.