Merge with develop.
--HG-- branch : feature
This commit is contained in:
commit
415e5a25a5
|
@ -420,14 +420,14 @@
|
||||||
<xs:element name="csa" minOccurs="0" maxOccurs="1">
|
<xs:element name="csa" minOccurs="0" maxOccurs="1">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="child" type="xs:unsignedInt" minOccurs="1" maxOccurs="unbounded"/>
|
<xs:element name="child" type="xs:unsignedInt" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="iPaths" minOccurs="0" maxOccurs="1">
|
<xs:element name="iPaths" minOccurs="0" maxOccurs="1">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="child" type="xs:unsignedInt" minOccurs="1" maxOccurs="unbounded"/>
|
<xs:element name="child" type="xs:unsignedInt" minOccurs="0" maxOccurs="unbounded"/>
|
||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
|
|
|
@ -621,6 +621,8 @@ QDomElement GetTagChildren(VAbstractPattern *doc, quint32 id)
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void SaveChildren(VAbstractPattern *doc, quint32 id, QDomElement section, const QVector<quint32> &children)
|
void SaveChildren(VAbstractPattern *doc, quint32 id, QDomElement section, const QVector<quint32> &children)
|
||||||
{
|
{
|
||||||
|
if (children.size() > 0)
|
||||||
|
{
|
||||||
for (int i=0; i<children.size(); ++i)
|
for (int i=0; i<children.size(); ++i)
|
||||||
{
|
{
|
||||||
QDomElement tagChild = doc->createElement(VToolUnionDetails::TagChild);
|
QDomElement tagChild = doc->createElement(VToolUnionDetails::TagChild);
|
||||||
|
@ -629,6 +631,7 @@ void SaveChildren(VAbstractPattern *doc, quint32 id, QDomElement section, const
|
||||||
}
|
}
|
||||||
|
|
||||||
GetTagChildren(doc, id).appendChild(section);
|
GetTagChildren(doc, id).appendChild(section);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue
Block a user