From d4274a0d8bd3bb210b8085332f4c827486ede2f3 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 11 May 2012 11:46:57 +0200 Subject: Generate all options for all classes in single HTML definition list This way we won't have any irregular gaps is the option list is assembled from multiple classes. --- cli/html.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/html.cxx b/cli/html.cxx index 8a9e97d..1f0c328 100644 --- a/cli/html.cxx +++ b/cli/html.cxx @@ -180,14 +180,10 @@ namespace return; } - os << "
" << endl; - if (!options.exclude_base ()) inherits (c, inherits_base_); names (c, names_option_); - - os << "
" << endl; } private: @@ -215,5 +211,9 @@ generate_html (context& ctx) ns >> ns_names >> ns; ns_names >> cl; + ctx.os << "
" << endl; + unit.dispatch (ctx.unit); + + ctx.os << "
" << endl; } -- cgit v1.1