From 592645ed42aec16d0c391ae0592eeb0ed5923b96 Mon Sep 17 00:00:00 2001 From: Gaute Lindkvist Date: Tue, 18 Sep 2018 08:24:12 +0200 Subject: [PATCH] Change Well Path Attribute Depth Start and Depth End to Start MD and End MD respetively. --- ApplicationCode/ProjectDataModel/RimWellPathAttribute.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ApplicationCode/ProjectDataModel/RimWellPathAttribute.cpp b/ApplicationCode/ProjectDataModel/RimWellPathAttribute.cpp index 4a09fc7c95..e447cdca2f 100644 --- a/ApplicationCode/ProjectDataModel/RimWellPathAttribute.cpp +++ b/ApplicationCode/ProjectDataModel/RimWellPathAttribute.cpp @@ -48,8 +48,8 @@ RimWellPathAttribute::RimWellPathAttribute() { CAF_PDM_InitObject("RimWellPathAttribute", "", "", ""); CAF_PDM_InitFieldNoDefault(&m_type, "AttributeType", "Type ", "", "", ""); - CAF_PDM_InitField(&m_depthStart, "DepthStart", 0.0, "Depth Start", "", "", ""); - CAF_PDM_InitField(&m_depthEnd, "DepthEnd", 0.0, "Depth End", "", "", ""); + CAF_PDM_InitField(&m_depthStart, "DepthStart", 0.0, "Start MD", "", "", ""); + CAF_PDM_InitField(&m_depthEnd, "DepthEnd", 0.0, "End MD", "", "", ""); CAF_PDM_InitField(&m_diameterInInches, "DiameterInInches", MAX_DIAMETER_IN_INCHES, "Diameter", "", "", ""); m_diameterInInches.uiCapability()->setUiEditorTypeName(caf::PdmUiComboBoxEditor::uiEditorTypeName()); }