summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2017-09-21 18:31:15 (GMT)
committerGitHub <noreply@github.com>2017-09-21 18:31:15 (GMT)
commit47d679b67952949d639ea9a206535e97a6154bb5 (patch)
tree259911096a13acbab761ed148fcf09016962ef31 /src
parentdd05f37d224b606ac725bf69db4f25715e89d87b (diff)
parent0e8530e42b69c909ef2c26468b24dfb88cc0997f (diff)
downloadDoxygen-47d679b67952949d639ea9a206535e97a6154bb5.zip
Doxygen-47d679b67952949d639ea9a206535e97a6154bb5.tar.gz
Doxygen-47d679b67952949d639ea9a206535e97a6154bb5.tar.bz2
Merge pull request #595 from albert-github/feature/bug_776870
Bug 776870 - XML Parsing Error for operator<< methods when outputing to XHTML
Diffstat (limited to 'src')
-rw-r--r--src/htmlgen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index 224c9b9..286c4dc 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -1589,8 +1589,8 @@ void HtmlGenerator::startMemberDoc( const char *clName, const char *memName,
{
DBG_HTML(t << "<!-- startMemberDoc -->" << endl;)
t << "\n<h2 class=\"memtitle\">"
- << "<span class=\"permalink\"><a href=\"#" << anchor << "\">&#9670;&nbsp;</a></span>"
- << title;
+ << "<span class=\"permalink\"><a href=\"#" << anchor << "\">&#9670;&nbsp;</a></span>";
+ docify(title);
if (memTotal>1)
{
t << " <span class=\"overload\">[" << memCount << "/" << memTotal <<"]</span>";