From: Wolfgang Bangerth Date: Sat, 11 Apr 2015 23:29:45 +0000 (-0500) Subject: Adjust documentation: Use the non-deprecated version *_boundary_id() instead of ... X-Git-Tag: v8.3.0-rc1~288^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F777%2Fhead;p=dealii.git Adjust documentation: Use the non-deprecated version *_boundary_id() instead of *_boundary_indicators(). --- diff --git a/doc/doxygen/headers/glossary.h b/doc/doxygen/headers/glossary.h index e7ae79f595..89d0e311d3 100644 --- a/doc/doxygen/headers/glossary.h +++ b/doc/doxygen/headers/glossary.h @@ -328,12 +328,12 @@ * for (unsigned int f=0; f::faces_per_cell; ++f) * if (cell->face(f)->at_boundary()) * if (cell->face(f)->center()[0] == -1) - * cell->face(f)->set_boundary_indicator (42); + * cell->face(f)->set_boundary_id (42); * @endcode - * This calls functions TriaAccessor::set_boundary_indicator. In 3d, it may - * also be appropriate to call TriaAccessor::set_all_boundary_indicators instead + * This calls functions TriaAccessor::set_boundary_id. In 3d, it may + * also be appropriate to call TriaAccessor::set_all_boundary_ids instead * on each of the selected faces. To query the boundary indicator of a particular - * face or edge, use TriaAccessor::boundary_indicator. + * face or edge, use TriaAccessor::boundary_id. * * In older versions of the library (prior to 8.2), if you wanted also * to change the way the Triangulation class treated the boundary for diff --git a/doc/doxygen/headers/iterators.h b/doc/doxygen/headers/iterators.h index 885b9c3dfb..58b1e87f20 100644 --- a/doc/doxygen/headers/iterators.h +++ b/doc/doxygen/headers/iterators.h @@ -225,7 +225,7 @@ iterator are line->child(0); hex->face(3); cell->at_boundary(); - face->boundary_indicator(); + face->boundary_id(); @endcode Since dereferencing iterators yields accessor objects, these calls are to