diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-07-18 11:34:23 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2018-07-18 11:34:23 (GMT) |
commit | 47ab3db4d5f65d384b2fddbc979eb83644e6ca9c (patch) | |
tree | e94279314fc4b1b28a84c62bcf56d7099051b91a /src | |
parent | 99e7f716c18f8b6f58f8351797146193cdc30919 (diff) | |
parent | bf793310d5d493d19b6cb8840151ab38659dd58f (diff) | |
download | Doxygen-47ab3db4d5f65d384b2fddbc979eb83644e6ca9c.zip Doxygen-47ab3db4d5f65d384b2fddbc979eb83644e6ca9c.tar.gz Doxygen-47ab3db4d5f65d384b2fddbc979eb83644e6ca9c.tar.bz2 |
Merge branch 'feature/bug_759063' of https://github.com/albert-github/doxygen into albert-github-feature/bug_759063
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 ab40b9d..e702a3c 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. @@ -164,7 +165,7 @@ void RefList::generatePage() doc += " \\_internalref "; doc += item->name; doc += " \""; - doc += item->title; + doc += item->title.replace(QRegExp("\\"),"\\\\"); doc += "\" "; // write declaration in case a function with arguments if (!item->args.isEmpty()) |