fix typos

This commit is contained in:
wmayer
2017-09-25 22:36:31 +02:00
parent 6d9886775c
commit 14f6de974b
10 changed files with 48 additions and 48 deletions

View File

@@ -122,11 +122,11 @@ bool ViewProviderPipe::onDelete(const std::vector<std::string> &s)
void ViewProviderPipe::highlightReferences(const bool on, bool auxillery)
void ViewProviderPipe::highlightReferences(const bool on, bool auxiliary)
{
PartDesign::Pipe* pcPipe = static_cast<PartDesign::Pipe*>(getObject());
Part::Feature* base;
if(!auxillery)
if(!auxiliary)
base = static_cast<Part::Feature*>(pcPipe->Spine.getValue());
else
base = static_cast<Part::Feature*>(pcPipe->AuxillerySpine.getValue());
@@ -137,7 +137,7 @@ void ViewProviderPipe::highlightReferences(const bool on, bool auxillery)
if (svp == NULL) return;
std::vector<std::string> edges;
if(!auxillery)
if(!auxiliary)
edges = pcPipe->Spine.getSubValuesStartsWith("Edge");
else
edges = pcPipe->AuxillerySpine.getSubValuesStartsWith("Edge");