summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2015-11-07 13:02:01 (GMT)
committeralbert-github <albert.tests@gmail.com>2015-11-07 13:02:01 (GMT)
commit1bb819f5b680d600f010761b21e44df2f5e35ccc (patch)
treefca734b4696b12462087268663e50f41d769e0cf
parente2dd83527381c67d38434e5cf1348f2a94887500 (diff)
downloadDoxygen-1bb819f5b680d600f010761b21e44df2f5e35ccc.zip
Doxygen-1bb819f5b680d600f010761b21e44df2f5e35ccc.tar.gz
Doxygen-1bb819f5b680d600f010761b21e44df2f5e35ccc.tar.bz2
Bug 757621 - unclosed tag, c# generics method with where
In the routine the <dd> tag is used to do an indentation in the <dl> section, this <dd> was not closed in endConstraintList. Problem existed from the beginning (version Release-1.5.2-20070719, commit 29a8f14)
-rw-r--r--src/htmlgen.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index 1b72661..9e02dee 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -2420,6 +2420,7 @@ void HtmlGenerator::endConstraintDocs()
void HtmlGenerator::endConstraintList()
{
t << "</table>" << endl;
+ t << "</dd>" << endl;
t << "</dl>" << endl;
t << "</div>" << endl;
}