summaryrefslogtreecommitdiffstats
path: root/src/reflist.cpp
diff options
context:
space:
mode:
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 758734a..e702a3c 100644
--- a/src/reflist.cpp
+++ b/src/reflist.cpp
@@ -170,7 +170,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;