1
0
mirror of synced 2024-09-19 09:46:09 +00:00

Fixed: wrong section was selected in EndSection for X2UtPersistXML

This commit is contained in:
Mark van Renswoude 2011-02-18 14:56:22 +00:00
parent f406555e55
commit 5c01377ea6

View File

@ -192,8 +192,10 @@ begin
if SectionStack.Count > 0 then
begin
FSection := (SectionStack[Pred(SectionStack.Count)] as IXMLSection);
SectionStack.Delete(Pred(SectionStack.Count));
lastItem := Pred(SectionStack.Count);
FSection := (SectionStack[Pred(lastItem)] as IXMLSection);
SectionStack.Delete(lastItem);
end;
end;