From 8d6214b76dfb2f8d3ce54c7ccf17748af0cd3a2d Mon Sep 17 00:00:00 2001 From: Gaute Lindkvist Date: Tue, 14 Aug 2018 15:17:24 +0200 Subject: [PATCH] #3183 Very minor rename of local variable to reflect reality. --- .../RicMultiSegmentWellExportInfo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ApplicationCode/Commands/CompletionExportCommands/RicMultiSegmentWellExportInfo.cpp b/ApplicationCode/Commands/CompletionExportCommands/RicMultiSegmentWellExportInfo.cpp index f140797c97..c77395995e 100644 --- a/ApplicationCode/Commands/CompletionExportCommands/RicMultiSegmentWellExportInfo.cpp +++ b/ApplicationCode/Commands/CompletionExportCommands/RicMultiSegmentWellExportInfo.cpp @@ -10,7 +10,7 @@ /// //-------------------------------------------------------------------------------------------------- RicWellSegmentLateralIntersection::RicWellSegmentLateralIntersection(const QString& gridName, - size_t gridLocalCellIndex, + size_t globalCellIndex, const cvf::Vec3st& gridLocalCellIJK, double startMD, double deltaMD, @@ -18,7 +18,7 @@ RicWellSegmentLateralIntersection::RicWellSegmentLateralIntersection(const QStri double deltaTVD, const cvf::Vec3d& lengthsInCell) : m_gridName(gridName) - , m_globalCellIndex(gridLocalCellIndex) + , m_globalCellIndex(globalCellIndex) , m_gridLocalCellIJK(gridLocalCellIJK) , m_startMD(startMD) , m_deltaMD(deltaMD)