summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-08-08 22:04:32 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-08-08 22:04:32 (GMT)
commit625e7a17bc708a32d52158ac24e7308c9d62fe84 (patch)
treeaee41428c517d4f2c8ca3d470b78c1b7819cf176 /src
parent83b9aac737e4dbb415c85a9fb445fea4ddee58ca (diff)
parent1df28fe4b9a0187f8fa6ed077e4a81002fa50fda (diff)
downloadDoxygen-625e7a17bc708a32d52158ac24e7308c9d62fe84.zip
Doxygen-625e7a17bc708a32d52158ac24e7308c9d62fe84.tar.gz
Doxygen-625e7a17bc708a32d52158ac24e7308c9d62fe84.tar.bz2
Merge pull request #378 from albert-github/feature/bug_tooltip
Tooltip can still contain < and > signs
Diffstat (limited to 'src')
-rw-r--r--src/htmlgen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index dadbb4f..e8da420 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -593,7 +593,7 @@ void HtmlCodeGenerator::writeTooltip(const char *id, const DocLinkInfo &docInfo,
if (desc)
{
m_t << "<div class=\"ttdoc\">";
- m_t << desc; // desc is already HTML escaped
+ docify(desc); // desc is already HTML escaped; but there are still < and > signs
m_t << "</div>";
}
if (!defInfo.file.isEmpty())