From: Wolfgang Bangerth Date: Fri, 2 Jan 2015 22:38:42 +0000 (-0600) Subject: Remove deprecated GridOutFlags::XFig::level_color. X-Git-Tag: v8.3.0-rc1~566^2~4 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=88c9beb9435e25581a3249ad54bcf34eaeaaf06a;p=dealii.git Remove deprecated GridOutFlags::XFig::level_color. --- diff --git a/doc/news/changes.h b/doc/news/changes.h index 55df560dec..ec81923943 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -74,6 +74,7 @@ inconvenience this causes. - DoFRenumbering::downstream_dg. - DoFTools::count_dofs_per_component. - DoFTools::make_sparsity_pattern with a vector-of-vector mask. + - GridOutFlags::XFig::level_color.
  • Removed: The config.h file no longer exports HAVE_* definitions. diff --git a/include/deal.II/grid/grid_out.h b/include/deal.II/grid/grid_out.h index 4c5d363550..157c1c6e09 100644 --- a/include/deal.II/grid/grid_out.h +++ b/include/deal.II/grid/grid_out.h @@ -525,14 +525,6 @@ namespace GridOutFlags level_subdomain_id } color_by; - /** - * @deprecated Use the color_by enum instead. - * - * Change color depending on level. Default is false, therefore, color is - * coded by material or boundary id. - */ - bool level_color DEAL_II_DEPRECATED; - /** * Code level to depth. Default is true. If false, color depends on * material or boundary id. diff --git a/tests/grid/grid_generator_01.cc b/tests/grid/grid_generator_01.cc index 21e4c93dff..6464f3715d 100644 --- a/tests/grid/grid_generator_01.cc +++ b/tests/grid/grid_generator_01.cc @@ -1,6 +1,6 @@ // --------------------------------------------------------------------- // -// Copyright (C) 2005 - 2014 by the deal.II authors +// Copyright (C) 2005 - 2015 by the deal.II authors // // This file is part of the deal.II library. // @@ -46,7 +46,6 @@ void test(std::ostream &out) GridOut go; GridOutFlags::XFig xfig_flags; - xfig_flags.level_color = false; xfig_flags.fill_style = 25; go.set_flags(xfig_flags);