diff options
Diffstat (limited to 'src/htmlgen.h')
-rw-r--r-- | src/htmlgen.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/htmlgen.h b/src/htmlgen.h index 366027d..7b63a6b 100644 --- a/src/htmlgen.h +++ b/src/htmlgen.h @@ -2,7 +2,7 @@ * * * - * Copyright (C) 1997-2013 by Dimitri van Heesch. + * Copyright (C) 1997-2014 by Dimitri van Heesch. * * Permission to use, copy, modify, and distribute this software and its * documentation under the terms of the GNU General Public License is hereby @@ -280,9 +280,9 @@ class HtmlGenerator : public OutputGenerator { t << "</table>" << endl; } void startDescTableTitle() //{ t << "<tr><td valign=\"top\"><em>"; } - { t << "<tr><td class=\"fieldname\"><em>"; } + { t << "<tr><td class=\"fieldname\">"; } void endDescTableTitle() - { t << "</em> </td>"; } + { t << " </td>"; } void startDescTableData() //{ t << "<td>" << endl; } { t << "<td class=\"fielddoc\">" << endl; } |