Fix typo II

This commit is contained in:
Bjørn Erik Jensen
2018-08-22 14:59:45 +02:00
parent a30afbfcea
commit 2d32766def
2 changed files with 3 additions and 3 deletions

View File

@@ -60,7 +60,7 @@ RicfCreateMultipleFractures::RicfCreateMultipleFractures()
{
RICF_InitField(&m_caseId, "caseId", -1, "Case ID", "", "", "");
RICF_InitField(&m_wellPathNames, "wellPathNames", std::vector<QString>(), "Well Path Names", "", "", "");
RICF_InitField(&m_maxDistFromWellTd, "maxDistFromWellTd", 100.0, "Max Distance From Well TD", "", "", "");
RICF_InitField(&m_minDistFromWellTd, "minDistFromWellTd", 100.0, "Min Distance From Well TD", "", "", "");
RICF_InitField(&m_maxFracturesPerWell, "maxFracturesPerWell", 100, "Max Fractures per Well", "", "", "");
RICF_InitField(&m_templateId, "templateId", -1, "Template ID", "", "", "");
RICF_InitField(&m_topLayer, "topLayer", -1, "Top Layer", "", "", "");
@@ -94,7 +94,7 @@ void RicfCreateMultipleFractures::execute()
settings->addWellPath(wellPath);
}
settings->setValues(gridCase, m_maxDistFromWellTd, m_maxFracturesPerWell);
settings->setValues(gridCase, m_minDistFromWellTd, m_maxFracturesPerWell);
settings->clearOptions();
settings->insertOptionItem(nullptr, options);