diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2017-09-21 18:31:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-21 18:31:15 (GMT) |
commit | 47d679b67952949d639ea9a206535e97a6154bb5 (patch) | |
tree | 259911096a13acbab761ed148fcf09016962ef31 | |
parent | dd05f37d224b606ac725bf69db4f25715e89d87b (diff) | |
parent | 0e8530e42b69c909ef2c26468b24dfb88cc0997f (diff) | |
download | Doxygen-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
-rw-r--r-- | src/htmlgen.cpp | 4 |
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 << "\">◆ </a></span>" - << title; + << "<span class=\"permalink\"><a href=\"#" << anchor << "\">◆ </a></span>"; + docify(title); if (memTotal>1) { t << " <span class=\"overload\">[" << memCount << "/" << memTotal <<"]</span>"; |