diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-07-18 11:27:24 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2018-07-18 11:27:24 (GMT) |
commit | 36e7bd7ee1ca011ef1370788e3d8da739bd4d37a (patch) | |
tree | 4cfcebda8a01c3b0dbb9302eeaa34a375e35b9ae /src | |
parent | dc524fd71be3cdd2171000ed5ac16c8785a46540 (diff) | |
parent | 9277e1466f91d7b2d4190b4e55d6e7b9b5e3962d (diff) | |
download | Doxygen-36e7bd7ee1ca011ef1370788e3d8da739bd4d37a.zip Doxygen-36e7bd7ee1ca011ef1370788e3d8da739bd4d37a.tar.gz Doxygen-36e7bd7ee1ca011ef1370788e3d8da739bd4d37a.tar.bz2 |
Merge branch 'feature/bug_782437' of https://github.com/albert-github/doxygen into albert-github-feature/bug_782437
Diffstat (limited to 'src')
-rw-r--r-- | src/reflist.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/reflist.cpp b/src/reflist.cpp index 5a80b19..e60bcc6 100644 --- a/src/reflist.cpp +++ b/src/reflist.cpp @@ -21,6 +21,7 @@ #include "util.h" #include "ftextstream.h" #include "definition.h" +#include <qregexp.h> /*! Create a list of items that are cross referenced with documentation blocks * @param listName String representing the name of the list. @@ -169,7 +170,7 @@ void RefList::generatePage() // write declaration in case a function with arguments if (!item->args.isEmpty()) { - doc += item->args; + doc += item->args.replace(QRegExp("@"),"@@"); } doc += "</dt><dd> "; doc += item->text; |