summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2015-08-02 17:37:54 (GMT)
committeralbert-github <albert.tests@gmail.com>2015-08-02 17:37:54 (GMT)
commit1df28fe4b9a0187f8fa6ed077e4a81002fa50fda (patch)
tree47e31be34f27e49769eb0d0e28e6113b10ee4910 /src
parent31c5aecbec5200bbfe797cfe8e7c0b565717a96f (diff)
downloadDoxygen-1df28fe4b9a0187f8fa6ed077e4a81002fa50fda.zip
Doxygen-1df28fe4b9a0187f8fa6ed077e4a81002fa50fda.tar.gz
Doxygen-1df28fe4b9a0187f8fa6ed077e4a81002fa50fda.tar.bz2
Tooltip can still contain < and > signs
< and > signs , when still present are converted so e.g. xhtml does not have a problem with it.
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())