Refactoring. Minor changes.
--HG-- branch : develop
This commit is contained in:
parent
bd656bcfff
commit
814c2307ee
|
@ -1558,12 +1558,11 @@ void VAbstractPattern::InsertTag(const QStringList &tags, const QDomElement &ele
|
||||||
for (int i = tags.indexOf(element.tagName())-1; i >= 0; --i)
|
for (int i = tags.indexOf(element.tagName())-1; i >= 0; --i)
|
||||||
{
|
{
|
||||||
const QDomNodeList list = elementsByTagName(tags.at(i));
|
const QDomNodeList list = elementsByTagName(tags.at(i));
|
||||||
if (list.isEmpty())
|
if (not list.isEmpty())
|
||||||
{
|
{
|
||||||
continue;
|
pattern.insertAfter(element, list.at(0));
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
pattern.insertAfter(element, list.at(0));
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
SetVersion();
|
SetVersion();
|
||||||
}
|
}
|
||||||
|
|
|
@ -212,6 +212,7 @@ QString VPatternConverter::XSDSchema(int ver) const
|
||||||
InvalidVersion(ver);
|
InvalidVersion(ver);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
return QString();//unreachable code
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
|
@ -62,6 +62,11 @@ bool VToolRecord::operator==(const VToolRecord &record) const
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
VToolRecord &VToolRecord::operator=(const VToolRecord &record)
|
VToolRecord &VToolRecord::operator=(const VToolRecord &record)
|
||||||
{
|
{
|
||||||
|
if ( &record == this )
|
||||||
|
{
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
this->id = record.getId();
|
this->id = record.getId();
|
||||||
this->typeTool = record.getTypeTool();
|
this->typeTool = record.getTypeTool();
|
||||||
this->nameDraw = record.getNameDraw();
|
this->nameDraw = record.getNameDraw();
|
||||||
|
|
|
@ -92,6 +92,7 @@ QString VVITConverter::XSDSchema(int ver) const
|
||||||
InvalidVersion(ver);
|
InvalidVersion(ver);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
return QString();//unreachable code
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
|
@ -94,6 +94,7 @@ QString VVSTConverter::XSDSchema(int ver) const
|
||||||
InvalidVersion(ver);
|
InvalidVersion(ver);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
return QString();//unreachable code
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
#include <QtNumeric>
|
#include <QtNumeric>
|
||||||
|
|
||||||
enum TabOrder {Paths=0, Labels=1, Grainline=2, Pins=3, Count};
|
enum TabOrder {Paths=0, Labels=1, Grainline=2, Pins=3, Count=4};
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user