diff --git a/src/Mod/Fem/Gui/ViewProviderAnalysis.cpp b/src/Mod/Fem/Gui/ViewProviderAnalysis.cpp index 108bdf1d67..231d46bb16 100644 --- a/src/Mod/Fem/Gui/ViewProviderAnalysis.cpp +++ b/src/Mod/Fem/Gui/ViewProviderAnalysis.cpp @@ -241,7 +241,7 @@ bool ViewProviderFemAnalysis::onDelete(const std::vector&) bool ViewProviderFemAnalysis::canDelete(App::DocumentObject* obj) const { - // deletions of objects from a FemAnalysis don't necesarily destroy anything + // deletions of objects from a FemAnalysis don't necessarily destroy anything // thus we can pass this action // we can warn the user if necessary in the object's ViewProvider in the onDelete() function Q_UNUSED(obj) diff --git a/src/Mod/Fem/Gui/ViewProviderFemPostFunction.cpp b/src/Mod/Fem/Gui/ViewProviderFemPostFunction.cpp index fef67ee42a..1a69fd0e39 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemPostFunction.cpp +++ b/src/Mod/Fem/Gui/ViewProviderFemPostFunction.cpp @@ -161,7 +161,7 @@ bool ViewProviderFemPostFunctionProvider::onDelete(const std::vector&) bool ViewProviderFemPostObject::canDelete(App::DocumentObject* obj) const { - // deletions of objects from a FemPostObject don't necesarily destroy anything + // deletions of objects from a FemPostObject don't necessarily destroy anything // thus we can pass this action // we can warn the user if necessary in the object's ViewProvider in the onDelete() function Q_UNUSED(obj) diff --git a/src/Mod/Fem/Gui/ViewProviderSolver.cpp b/src/Mod/Fem/Gui/ViewProviderSolver.cpp index 787704d8cd..2bd586897e 100644 --- a/src/Mod/Fem/Gui/ViewProviderSolver.cpp +++ b/src/Mod/Fem/Gui/ViewProviderSolver.cpp @@ -85,11 +85,11 @@ bool ViewProviderSolver::onDelete(const std::vector&) bool ViewProviderSolver::canDelete(App::DocumentObject* obj) const { - // deletions of objects from a FemSolver don't necesarily destroy anything + // deletions of objects from a FemSolver don't necessarily destroy anything // thus we can pass this action // we can warn the user if necessary in the object's ViewProvider in the onDelete() function Q_UNUSED(obj) - return true; + return true; }