diff --git a/io/file/vtk/vtkwriter.hh b/io/file/vtk/vtkwriter.hh index 3e275f87d6e79e1b89c6cf98d51389051817305a..2bdeada7b4f4a7dbca49b84f10e7dda44a9233f4 100644 --- a/io/file/vtk/vtkwriter.hh +++ b/io/file/vtk/vtkwriter.hh @@ -134,7 +134,7 @@ namespace Dune template<int dim> struct P1Layout { - bool contains (int codim, Dune::NewGeometryType gt) + bool contains (int codim, Dune::GeometryType gt) { if (codim==dim) return true; return false; @@ -367,8 +367,8 @@ namespace Dune vtkPyramid = 14 }; - //! mapping from NewGeometryType to VTKGeometryType - VTKGeometryType vtkType(const Dune::NewGeometryType & t) const + //! mapping from GeometryType to VTKGeometryType + VTKGeometryType vtkType(const Dune::GeometryType & t) const { if (t.isLine()) return vtkLine;