From 6f42d6ae1fab9b5d438ec6d4b9d46ee66cf71645 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Jensen?= Date: Fri, 14 Sep 2018 12:52:25 +0200 Subject: [PATCH] #3264 MSW fracture export. Rename some fields --- .../Completions/RimFishbonesCollection.cpp | 2 +- .../Completions/RimWellPathFractureCollection.cpp | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ApplicationCode/ProjectDataModel/Completions/RimFishbonesCollection.cpp b/ApplicationCode/ProjectDataModel/Completions/RimFishbonesCollection.cpp index c78bebaff8..a7afc5bc6d 100644 --- a/ApplicationCode/ProjectDataModel/Completions/RimFishbonesCollection.cpp +++ b/ApplicationCode/ProjectDataModel/Completions/RimFishbonesCollection.cpp @@ -133,7 +133,7 @@ void RimFishbonesCollection::defineUiOrdering(QString uiConfigName, caf::PdmUiOr wellGroup->add(&m_startMD); wellGroup->add(&m_mainBoreDiameter); wellGroup->add(&m_skinFactor); - caf::PdmUiGroup* mswGroup = uiOrdering.addNewGroup("Multi Segment Well Properties"); + caf::PdmUiGroup* mswGroup = uiOrdering.addNewGroup("Multi Segment Well Options"); m_mswParameters->uiOrdering(uiConfigName, *mswGroup); uiOrdering.skipRemainingFields(true); } diff --git a/ApplicationCode/ProjectDataModel/Completions/RimWellPathFractureCollection.cpp b/ApplicationCode/ProjectDataModel/Completions/RimWellPathFractureCollection.cpp index 880c414e2a..1a7e8d9f17 100644 --- a/ApplicationCode/ProjectDataModel/Completions/RimWellPathFractureCollection.cpp +++ b/ApplicationCode/ProjectDataModel/Completions/RimWellPathFractureCollection.cpp @@ -28,8 +28,8 @@ namespace caf { template<> void RimWellPathFractureCollection::ReferenceMDEnum::setUp() { - addItem(RimWellPathFractureCollection::AUTO_REFERENCE_MD, "GridIntersectionRefMD", "Use depth where the well path meets grid"); - addItem(RimWellPathFractureCollection::MANUAL_REFERENCE_MD, "ManualRefMD", "Set Manually"); + addItem(RimWellPathFractureCollection::AUTO_REFERENCE_MD, "GridIntersectionRefMD", "Grid Entry Point"); + addItem(RimWellPathFractureCollection::MANUAL_REFERENCE_MD, "ManualRefMD", "User Defined"); setDefault(RimWellPathFractureCollection::AUTO_REFERENCE_MD); } } @@ -50,8 +50,8 @@ RimWellPathFractureCollection::RimWellPathFractureCollection(void) setName("Fractures"); nameField()->uiCapability()->setUiHidden(true); - CAF_PDM_InitFieldNoDefault(&m_refMDType, "RefMDType", "Reference Depth", "", "", ""); - CAF_PDM_InitField(&m_refMD, "RefMD", 0.0, "Reference MD", "", "", ""); + CAF_PDM_InitFieldNoDefault(&m_refMDType, "RefMDType", "Reference MD", "", "", ""); + CAF_PDM_InitField(&m_refMD, "RefMD", 0.0, "", "", "", ""); CAF_PDM_InitFieldNoDefault(&m_mswParameters, "MswParameters", "Multi Segment Well Parameters", "", "", ""); m_mswParameters = new RimMswCompletionParameters; m_mswParameters.uiCapability()->setUiTreeHidden(true); @@ -151,7 +151,7 @@ std::vector RimWellPathFractureCollection::activeFractures //-------------------------------------------------------------------------------------------------- void RimWellPathFractureCollection::defineUiOrdering(QString uiConfigName, caf::PdmUiOrdering& uiOrdering) { - caf::PdmUiGroup* mswGroup = uiOrdering.addNewGroup("Multi Segment Well Properties"); + caf::PdmUiGroup* mswGroup = uiOrdering.addNewGroup("Multi Segment Well Options"); mswGroup->add(&m_refMDType); mswGroup->add(&m_refMD);