Correct spelling of FEM Netgen Mesh 'Fineness' parameter

This commit is contained in:
Richard Crozier
2015-01-10 12:14:40 +00:00
committed by wmayer
parent c6fe925dfd
commit 65092be5f3
3 changed files with 29 additions and 29 deletions

View File

@@ -50,7 +50,7 @@ using namespace Gui;
TaskTetParameter::TaskTetParameter(Fem::FemMeshShapeNetgenObject *pcObject,QWidget *parent)
: TaskBox(Gui::BitmapFactory().pixmap("Fem_FemMesh_createnodebypoly"),
tr("Tet Parameter"),
true,
true,
parent),
pcObject(pcObject)
{
@@ -63,7 +63,7 @@ TaskTetParameter::TaskTetParameter(Fem::FemMeshShapeNetgenObject *pcObject,QWidg
this->groupLayout()->addWidget(proxy);
ui->doubleSpinBox_MaxSize->setValue(pcObject->MaxSize.getValue());
ui->comboBox_Fineness->setCurrentIndex(pcObject->Fininess.getValue());
ui->comboBox_Fineness->setCurrentIndex(pcObject->Fineness.getValue());
ui->checkBox_SecondOrder->setChecked(pcObject->SecondOrder.getValue());
ui->doubleSpinBox_GrowthRate->setValue(pcObject->GrowthRate.getValue());
ui->spinBox_SegsPerEdge->setValue(pcObject->NbSegsPerEdge.getValue());
@@ -103,7 +103,7 @@ void TaskTetParameter::SwitchMethod(int Value)
ui->spinBox_SegsPerRadius->setEnabled(false);
}
pcObject->Fininess.setValue(Value);
pcObject->Fineness.setValue(Value);
touched = true;
}