summaryrefslogtreecommitdiffstats
path: root/src/docparser.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-12-18 09:50:48 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-12-18 09:50:48 (GMT)
commit7d920a52163162f98c456e051454b9d766e56e69 (patch)
tree2888fdce339b2465fc0611d29eb71085d07eefe7 /src/docparser.cpp
parent5260651e7e3c5a2a788b2de752028899b5e10c7f (diff)
parent2001c933292d3dd25ebc6634dab62aab7389c5bc (diff)
downloadDoxygen-7d920a52163162f98c456e051454b9d766e56e69.zip
Doxygen-7d920a52163162f98c456e051454b9d766e56e69.tar.gz
Doxygen-7d920a52163162f98c456e051454b9d766e56e69.tar.bz2
Merge branch 'feature/bug_unsupported_html' of https://github.com/albert-github/doxygen into albert-github-feature/bug_unsupported_html
Diffstat (limited to 'src/docparser.cpp')
-rw-r--r--src/docparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/docparser.cpp b/src/docparser.cpp
index b1e2486..f4160ef 100644
--- a/src/docparser.cpp
+++ b/src/docparser.cpp
@@ -6292,7 +6292,7 @@ int DocPara::handleHtmlStartTag(const QCString &tagName,const HtmlAttribList &ta
break;
case HTML_UNKNOWN:
warn_doc_error(g_fileName,doctokenizerYYlineno,"Unsupported xml/html tag <%s> found", qPrint(tagName));
- m_children.append(new DocWord(this, "<"+tagName+tagHtmlAttribs.toString()+">"));
+ m_children.append(new DocWord(this, "<"+tagName+g_token->attribsStr+">"));
break;
case XML_INHERITDOC:
handleInheritDoc();