From 1df28fe4b9a0187f8fa6ed077e4a81002fa50fda Mon Sep 17 00:00:00 2001 From: albert-github Date: Sun, 2 Aug 2015 19:37:54 +0200 Subject: Tooltip can still contain < and > signs < and > signs , when still present are converted so e.g. xhtml does not have a problem with it. --- src/htmlgen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 << "
"; - m_t << desc; // desc is already HTML escaped + docify(desc); // desc is already HTML escaped; but there are still < and > signs m_t << "
"; } if (!defInfo.file.isEmpty()) -- cgit v0.12