summaryrefslogtreecommitdiffstats
path: root/src/docparser.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2015-08-28 17:16:00 (GMT)
committeralbert-github <albert.tests@gmail.com>2015-08-28 17:16:00 (GMT)
commit68dd27139e50e048f081549394e6fc6dc04fc699 (patch)
treeb71dcbddaa0a82914af9c72a7157d777359ba93c /src/docparser.cpp
parent8418d48172b29437ab36fa90691c87734d3ca27c (diff)
downloadDoxygen-68dd27139e50e048f081549394e6fc6dc04fc699.zip
Doxygen-68dd27139e50e048f081549394e6fc6dc04fc699.tar.gz
Doxygen-68dd27139e50e048f081549394e6fc6dc04fc699.tar.bz2
Small correction of errors in case of CSharp XML tags
Extended / corrected some error messages
Diffstat (limited to 'src/docparser.cpp')
-rw-r--r--src/docparser.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/docparser.cpp b/src/docparser.cpp
index 3588efd..c3963c9 100644
--- a/src/docparser.cpp
+++ b/src/docparser.cpp
@@ -5945,7 +5945,7 @@ int DocPara::handleHtmlStartTag(const QCString &tagName,const HtmlAttribList &ta
{
if (Config_getBool("WARN_NO_PARAMDOC"))
{
- warn_doc_error(g_fileName,doctokenizerYYlineno,"empty 'name' attribute for <param> tag.");
+ warn_doc_error(g_fileName,doctokenizerYYlineno,"empty 'name' attribute for <param%s> tag.",tagId==XML_PARAM?"":"type");
}
}
else
@@ -5957,7 +5957,7 @@ int DocPara::handleHtmlStartTag(const QCString &tagName,const HtmlAttribList &ta
}
else
{
- warn_doc_error(g_fileName,doctokenizerYYlineno,"Missing 'name' attribute from <param> tag.");
+ warn_doc_error(g_fileName,doctokenizerYYlineno,"Missing 'name' attribute from <param%s> tag.",tagId==XML_PARAM?"":"type");
}
}
break;
@@ -5990,7 +5990,7 @@ int DocPara::handleHtmlStartTag(const QCString &tagName,const HtmlAttribList &ta
}
else
{
- warn_doc_error(g_fileName,doctokenizerYYlineno,"Missing 'name' attribute from <exception> tag.");
+ warn_doc_error(g_fileName,doctokenizerYYlineno,"Missing 'cref' attribute from <exception> tag.");
}
}
break;