summaryrefslogtreecommitdiffstats
path: root/src/reflist.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2018-07-18 11:32:34 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2018-07-18 11:32:34 (GMT)
commit99e7f716c18f8b6f58f8351797146193cdc30919 (patch)
tree15bb3aab13383710bfa870b144e2197998e3beba /src/reflist.cpp
parentdc524fd71be3cdd2171000ed5ac16c8785a46540 (diff)
parentfbca3f69cf0e98a8269c86567c7d24d25723bb82 (diff)
downloadDoxygen-99e7f716c18f8b6f58f8351797146193cdc30919.zip
Doxygen-99e7f716c18f8b6f58f8351797146193cdc30919.tar.gz
Doxygen-99e7f716c18f8b6f58f8351797146193cdc30919.tar.bz2
Merge branch 'albert-github-feature/bug_782437'
Diffstat (limited to 'src/reflist.cpp')
-rw-r--r--src/reflist.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/reflist.cpp b/src/reflist.cpp
index 5a80b19..ab40b9d 100644
--- a/src/reflist.cpp
+++ b/src/reflist.cpp
@@ -169,7 +169,8 @@ void RefList::generatePage()
// write declaration in case a function with arguments
if (!item->args.isEmpty())
{
- doc += item->args;
+ // escape @'s in argument list, needed for Java annotations (see issue #6208)
+ doc += substitute(item->args,"@","@@");
}
doc += "</dt><dd> ";
doc += item->text;