From 8750bfde81b7d901004c017ba6a31c9e776a75e7 Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Tue, 16 Apr 2013 09:53:31 +0200 Subject: [PATCH] Whitespace p4#: 21309 --- ApplicationCode/ProjectDataModel/RimWell.cpp | 3 --- ApplicationCode/ProjectDataModel/RimWell.h | 5 ++--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/ApplicationCode/ProjectDataModel/RimWell.cpp b/ApplicationCode/ProjectDataModel/RimWell.cpp index 893a3d13ae..2f0f403172 100644 --- a/ApplicationCode/ProjectDataModel/RimWell.cpp +++ b/ApplicationCode/ProjectDataModel/RimWell.cpp @@ -45,9 +45,6 @@ RimWell::RimWell() CAF_PDM_InitField(&showWellCells, "ShowWellCells", true, "Add cells to range filter", "", "", ""); CAF_PDM_InitField(&showWellCellFence, "ShowWellCellFence", false, " Use well fence", "", "", ""); - //CAF_PDM_InitField(&wellCellColor, "WellCellColor", cvf::Color3f(cvf::Color3f::BROWN), "Well cell color", "", "", ""); - - name.setUiHidden(true); name.setUiReadOnly(true); diff --git a/ApplicationCode/ProjectDataModel/RimWell.h b/ApplicationCode/ProjectDataModel/RimWell.h index a9f18b1ea7..23d8b5090e 100644 --- a/ApplicationCode/ProjectDataModel/RimWell.h +++ b/ApplicationCode/ProjectDataModel/RimWell.h @@ -42,7 +42,7 @@ public: void setReservoirView(RimReservoirView* ownerReservoirView); void setWellResults(RigSingleWellResultsData* wellResults) { m_wellResults = wellResults;} - RigSingleWellResultsData* wellResults() { return m_wellResults.p();} + RigSingleWellResultsData* wellResults() { return m_wellResults.p(); } virtual caf::PdmFieldHandle* userDescriptionField(); @@ -54,14 +54,13 @@ public: caf::PdmField showWellCells; caf::PdmField showWellCellFence; - //caf::PdmField wellCellColor; caf::PdmField showWellPipes; caf::PdmField wellPipeColor; caf::PdmField pipeRadiusScaleFactor; private: - cvf::ref m_wellResults; + cvf::ref m_wellResults; RimReservoirView* m_reservoirView; };