From: Wolfgang Bangerth Date: Wed, 4 Nov 1998 09:12:23 +0000 (+0000) Subject: Fix three little typos, which I didn't catch yesterday. X-Git-Tag: v8.0.0~22631 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa22639ad543f553228c781c8c87388c8d1c9784;p=dealii.git Fix three little typos, which I didn't catch yesterday. git-svn-id: https://svn.dealii.org/trunk@626 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/dofs/dof_accessor.cc b/deal.II/deal.II/source/dofs/dof_accessor.cc index 3e0844099f..b24f7ec998 100644 --- a/deal.II/deal.II/source/dofs/dof_accessor.cc +++ b/deal.II/deal.II/source/dofs/dof_accessor.cc @@ -534,11 +534,11 @@ DoFCellAccessor::get_interpolated_dof_values (const dVector &values, // get the values from the present // child, if necessary by // interpolation itself - child(child)->get_interpolated_dof_values (values, + this->child(child)->get_interpolated_dof_values (values, tmp1); // interpolate these to the mother // cell - dof_handler->get_fe()->restrict(child).vmult (tmp2, tmp1); + dof_handler->get_fe().restrict(child).vmult (tmp2, tmp1); // now write those entries in tmp2 // which are != 0 into the output @@ -550,6 +550,7 @@ DoFCellAccessor::get_interpolated_dof_values (const dVector &values, for (unsigned int i=0; i