diff --git a/dune/elasticity/assemblers/localadolcstiffness.hh b/dune/elasticity/assemblers/localadolcstiffness.hh
index fcc0f2dfc5071c7cc9bf758b7df5d90a5dea8ab6..582381f1772bc9701088413d2c554830066a318c 100644
--- a/dune/elasticity/assemblers/localadolcstiffness.hh
+++ b/dune/elasticity/assemblers/localadolcstiffness.hh
@@ -38,7 +38,7 @@ public:
     //! Dimension of a tangent space
     enum { blocksize = VectorType::value_type::dimension };
 
-    LocalADOLCStiffness(const LocalFEStiffness<GridView, LocalFiniteElement, AVectorType>* energy)
+    LocalADOLCStiffness(const Dune::Elasticity::LocalEnergy<GridView, LocalFiniteElement, AVectorType>* energy)
     : localEnergy_(energy)
     {}
 
@@ -56,7 +56,7 @@ public:
                          const VectorType& localConfiguration,
                          VectorType& localGradient);
 
-    const LocalFEStiffness<GridView, LocalFiniteElement, AVectorType>* localEnergy_;
+    const Dune::Elasticity::LocalEnergy<GridView, LocalFiniteElement, AVectorType>* localEnergy_;
 
 };