Fixed bug with not unique id if Group is the last object that was created in

file.

Reparsing did not update max available id in file. This cause creating
duplicate ids.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2016-06-26 15:41:48 +03:00
parent 2bdd0258a5
commit a0585a4c2b

View file

@ -317,6 +317,8 @@ void VAbstractPattern::ParseGroups(const QDomElement &domElement)
{
if (domElement.tagName() == TagGroup)
{
VContainer::UpdateId(GetParametrUInt(domElement, AttrId, NULL_ID_STR));
const QPair<bool, QMap<quint32, quint32> > groupData = ParseItemElement(domElement);
const QMap<quint32, quint32> group = groupData.second;
auto i = group.constBegin();