From 43cc8b1da8156375427cedbba653a12895d0dac5 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sat, 11 Apr 2015 18:29:45 -0500 Subject: [PATCH] Adjust documentation: Use the non-deprecated version *_boundary_id() instead of *_boundary_indicators(). --- doc/doxygen/headers/glossary.h | 8 ++++---- doc/doxygen/headers/iterators.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) 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 -- 2.39.5