fix confusing class name

This commit is contained in:
WandererFan
2017-05-10 17:43:48 +02:00
committed by wmayer
parent 75397d9e43
commit eb34dc5103
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -173,13 +173,13 @@ void DrawViewSection::onChanged(const App::Property* prop)
prop == &NameGeomPattern ) {
if ((!FileHatchPattern.isEmpty()) &&
(!NameGeomPattern.isEmpty())) {
std::vector<HatchLine> specs =
std::vector<PATLineSpec> specs =
DrawGeomHatch::getDecodedSpecsFromFile(FileHatchPattern.getValue(),NameGeomPattern.getValue());
m_lineSets.clear();
for (auto& hl: specs) {
//hl.dump("hl from section");
LineSet ls;
ls.setHatchLine(hl);
ls.setPATLineSpec(hl);
m_lineSets.push_back(ls);
}