Remove minus "-" from the list of measurements.
--HG-- branch : develop
This commit is contained in:
parent
3558d634c0
commit
28f5188a92
|
@ -132,6 +132,11 @@ QStringList VAbstractPattern::ListMeasurements() const
|
|||
const QList<QString> tValues = tokens.values();
|
||||
for (int j = 0; j < tValues.size(); ++j)
|
||||
{
|
||||
if (tValues.at(j) == QLatin1Literal("-"))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
if (measurements.contains(tValues.at(j)))
|
||||
{
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue
Block a user