Additionaly each standard table provide measurements size and height.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2015-10-26 17:39:23 +02:00
parent 28f5188a92
commit d104b8bd7e
2 changed files with 10 additions and 1 deletions

View file

@ -617,6 +617,13 @@ QStringList VMeasurements::ListAll() const
}
}
if (type == MeasurementsType::Standard)
{
// Additionaly each standard table provide size and height
listNames.append(size_M);
listNames.append(height_M);
}
return listNames;
}

View file

@ -964,7 +964,9 @@ QStringList AllGroupNames()
<< ListGroupN()
<< ListGroupO()
<< ListGroupP()
<< ListGroupQ();
<< ListGroupQ()
<< size_M
<< height_M;
return originalNames;
}