fix confusing class name

This commit is contained in:
WandererFan
2017-03-27 15:46:56 -04:00
committed by wmayer
parent bf4a80dad5
commit 0ce1a6f730
3 changed files with 6 additions and 6 deletions

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);
}