fix typos
This commit is contained in:
@@ -68,7 +68,7 @@
|
||||
<widget class="QWidget" name="standard"/>
|
||||
<widget class="QWidget" name="fixed"/>
|
||||
<widget class="QWidget" name="frenet"/>
|
||||
<widget class="QWidget" name="auxillery">
|
||||
<widget class="QWidget" name="auxiliary">
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||
<item>
|
||||
<widget class="QCheckBox" name="curvelinear">
|
||||
|
||||
@@ -323,7 +323,7 @@ TaskPipeOrientation::TaskPipeOrientation(ViewProviderPipe* PipeView, bool /*newO
|
||||
Gui::Document* doc = Gui::Application::Instance->activeDocument();
|
||||
|
||||
//make sure th euser sees al important things: the base feature to select edges and the
|
||||
//spine/auxillery spine he already selected
|
||||
//spine/auxiliary spine he already selected
|
||||
if(pipe->AuxillerySpine.getValue()) {
|
||||
auto* svp = doc->getViewProvider(pipe->AuxillerySpine.getValue());
|
||||
auxSpineShow = svp->isShow();
|
||||
|
||||
@@ -91,7 +91,7 @@ TaskShapeBinder::TaskShapeBinder(ViewProviderShapeBinder *view, bool /*newObj*/,
|
||||
ui->listWidgetReferences->addItem(QString::fromStdString(sub));
|
||||
|
||||
//make sure th euser sees al important things: the base feature to select edges and the
|
||||
//spine/auxillery spine he already selected
|
||||
//spine/auxiliary spine he already selected
|
||||
if(obj) {
|
||||
auto* svp = doc->getViewProvider(obj);
|
||||
if(svp) {
|
||||
@@ -148,7 +148,7 @@ TaskShapeBinder::~TaskShapeBinder()
|
||||
Gui::Document* doc = Gui::Application::Instance->activeDocument();
|
||||
|
||||
//make sure th euser sees al important things: the base feature to select edges and the
|
||||
//spine/auxillery spine he already selected
|
||||
//spine/auxiliary spine he already selected
|
||||
if(pipe->BaseFeature.getValue())
|
||||
doc->getViewProvider(pipe->BaseFeature.getValue())->hide();
|
||||
if(pipe->Spine.getValue()) {
|
||||
|
||||
@@ -121,11 +121,11 @@ bool ViewProviderLoft::onDelete(const std::vector<std::string> & /*s*/)
|
||||
return true;
|
||||
}
|
||||
|
||||
void ViewProviderLoft::highlightReferences(const bool /*on*/, bool /*auxillery*/)
|
||||
void ViewProviderLoft::highlightReferences(const bool /*on*/, bool /*auxiliary*/)
|
||||
{/*
|
||||
PartDesign::Loft* pcLoft = static_cast<PartDesign::Loft*>(getObject());
|
||||
Part::Feature* base;
|
||||
if(!auxillery)
|
||||
if(!auxiliary)
|
||||
base = static_cast<Part::Feature*>(pcLoft->Spine.getValue());
|
||||
else
|
||||
base = static_cast<Part::Feature*>(pcLoft->AuxillerySpine.getValue());
|
||||
@@ -136,7 +136,7 @@ void ViewProviderLoft::highlightReferences(const bool /*on*/, bool /*auxillery*/
|
||||
if (svp == NULL) return;
|
||||
|
||||
std::vector<std::string> edges;
|
||||
if(!auxillery)
|
||||
if(!auxiliary)
|
||||
edges = pcLoft->Spine.getSubValuesStartsWith("Edge");
|
||||
else
|
||||
edges = pcLoft->AuxillerySpine.getSubValuesStartsWith("Edge");
|
||||
|
||||
@@ -44,7 +44,7 @@ public:
|
||||
bool doubleClicked();
|
||||
|
||||
virtual bool onDelete(const std::vector<std::string> &);
|
||||
void highlightReferences(const bool on, bool auxillery);
|
||||
void highlightReferences(const bool on, bool auxiliary);
|
||||
|
||||
protected:
|
||||
virtual bool setEdit(int ModNum);
|
||||
|
||||
@@ -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");
|
||||
|
||||
@@ -44,7 +44,7 @@ public:
|
||||
bool doubleClicked();
|
||||
|
||||
virtual bool onDelete(const std::vector<std::string> &);
|
||||
void highlightReferences(const bool on, bool auxillery);
|
||||
void highlightReferences(const bool on, bool auxiliary);
|
||||
|
||||
protected:
|
||||
virtual QIcon getIcon(void) const;
|
||||
|
||||
@@ -122,7 +122,7 @@ void ViewProviderShapeBinder::unsetEdit(int ModNum) {
|
||||
PartGui::ViewProviderPart::unsetEdit(ModNum);
|
||||
}
|
||||
|
||||
void ViewProviderShapeBinder::highlightReferences(const bool on, bool /*auxillery*/)
|
||||
void ViewProviderShapeBinder::highlightReferences(const bool on, bool /*auxiliary*/)
|
||||
{
|
||||
Part::Feature* obj;
|
||||
std::vector<std::string> subs;
|
||||
|
||||
@@ -39,7 +39,7 @@ public:
|
||||
virtual ~ViewProviderShapeBinder();
|
||||
|
||||
void setupContextMenu(QMenu*, QObject*, const char*);
|
||||
void highlightReferences(const bool on, bool auxillery);
|
||||
void highlightReferences(const bool on, bool auxiliary);
|
||||
|
||||
protected:
|
||||
virtual bool setEdit(int ModNum);
|
||||
|
||||
Reference in New Issue
Block a user