diff options
author | albert-github <albert.tests@gmail.com> | 2018-02-03 13:11:13 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-02-03 13:11:13 (GMT) |
commit | 44960da16786f6fe769b2c45d9be309568c3c1a8 (patch) | |
tree | 31828ae5da123556e5414ade8b386c550ab60133 /src/ftvhelp.cpp | |
parent | a1474373a0be8b099a2458b9c02d19e191e457e7 (diff) | |
download | Doxygen-44960da16786f6fe769b2c45d9be309568c3c1a8.zip Doxygen-44960da16786f6fe769b2c45d9be309568c3c1a8.tar.gz Doxygen-44960da16786f6fe769b2c45d9be309568c3c1a8.tar.bz2 |
Bug 792415 - Blank rows on class page when using external tag file
Regression on: Bug 743367 - Duplicate attribute (target="_top" target="_top") generated in .SVG files
Added missing closing >.
Diffstat (limited to 'src/ftvhelp.cpp')
-rw-r--r-- | src/ftvhelp.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ftvhelp.cpp b/src/ftvhelp.cpp index b04da62..14c94a3 100644 --- a/src/ftvhelp.cpp +++ b/src/ftvhelp.cpp @@ -302,6 +302,10 @@ void FTVHelp::generateLink(FTextStream &t,FTVNode *n) else t << "\" target=\"_self\">"; } + else + { + t << ">"; + } t << convertToHtml(n->name); t << "</a>"; if (!n->ref.isEmpty()) |