From: wolf Date: Wed, 4 Nov 1998 09:12:23 +0000 (+0000) Subject: Fix three little typos, which I didn't catch yesterday. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=17153f3d0087de0785c2cc4c5084d874a9b6c3be;p=dealii-svn.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