From 67d8a7b09816a05795d48c406656100dad450d83 Mon Sep 17 00:00:00 2001
From: Norihiro Watanabe <norihiro.watanabe@ufz.de>
Date: Thu, 16 Jun 2016 08:43:04 +0200
Subject: [PATCH] fix my mistake renaming LayeredVolume::getAttributePoints()

---
 Applications/DataExplorer/DataView/MeshLayerEditDialog.cpp | 2 +-
 MeshLib/MeshGenerators/LayeredVolume.h                     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Applications/DataExplorer/DataView/MeshLayerEditDialog.cpp b/Applications/DataExplorer/DataView/MeshLayerEditDialog.cpp
index 1a4e49badb2..ed19652f2c5 100644
--- a/Applications/DataExplorer/DataView/MeshLayerEditDialog.cpp
+++ b/Applications/DataExplorer/DataView/MeshLayerEditDialog.cpp
@@ -237,7 +237,7 @@ MeshLib::Mesh* MeshLayerEditDialog::createTetMesh()
 
         if (tg_mesh)
         {
-            std::vector<MeshLib::Node> tg_attr (lv.getConfigAttributePoints());
+            std::vector<MeshLib::Node> tg_attr (lv.getAttributePoints());
             FileIO::TetGenInterface tetgen_interface;
             tetgen_interface.writeTetGenSmesh(filename.toStdString(), *tg_mesh, tg_attr);
         }
diff --git a/MeshLib/MeshGenerators/LayeredVolume.h b/MeshLib/MeshGenerators/LayeredVolume.h
index 1e58344e844..fb0bd1b280c 100644
--- a/MeshLib/MeshGenerators/LayeredVolume.h
+++ b/MeshLib/MeshGenerators/LayeredVolume.h
@@ -49,7 +49,7 @@ public:
                             double noDataReplacementValue = 0.0);
 
     /// Returns the region attribute vector necessary for assigning region attributes via TetGen
-    std::vector<MeshLib::Node> getConfigAttributePoints() { return _attribute_points; }
+    std::vector<MeshLib::Node> getAttributePoints() { return _attribute_points; }
 
 private:
     /// Adds another layer to the subsurface mesh
-- 
GitLab