FEM: [skip ci] fix some typos

This commit is contained in:
wmayer
2022-04-12 11:03:03 +02:00
parent c5ea25c949
commit a70d6fd7ec
4 changed files with 5 additions and 5 deletions

View File

@@ -241,7 +241,7 @@ bool ViewProviderFemAnalysis::onDelete(const std::vector<std::string>&)
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)

View File

@@ -161,7 +161,7 @@ bool ViewProviderFemPostFunctionProvider::onDelete(const std::vector<std::string
bool ViewProviderFemPostFunctionProvider::canDelete(App::DocumentObject* obj) const
{
// deletions of objects from a FemFunction don't necesarily destroy anything
// deletions of objects from a FemFunction 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)

View File

@@ -721,7 +721,7 @@ bool ViewProviderFemPostObject::onDelete(const std::vector<std::string>&)
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)

View File

@@ -85,11 +85,11 @@ bool ViewProviderSolver::onDelete(const std::vector<std::string>&)
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;
}