diff options
author | albert-github <albert.tests@gmail.com> | 2020-11-24 13:13:37 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2020-11-24 13:13:37 (GMT) |
commit | 5cc7fed36c8d3b45eec19b7333b494c1c649902f (patch) | |
tree | 6bdcf4dc8466807918d399874c10f8d2fa7e43b3 /addon | |
parent | 4e75d77f60bd173019247177686376ce36ace90b (diff) | |
download | Doxygen-5cc7fed36c8d3b45eec19b7333b494c1c649902f.zip Doxygen-5cc7fed36c8d3b45eec19b7333b494c1c649902f.tar.gz Doxygen-5cc7fed36c8d3b45eec19b7333b494c1c649902f.tar.bz2 |
issue #8184 Bad parsing of CMakeLists.txt
- Removing the `txt` and `doc` extension from the default list of `FILE_PATTERNS
- Updating documentation
- Incorrect parsing for the doxywizard of some \ref items (i.e. when the description contains a space, made compatible again with that happens in configgen.py).
Diffstat (limited to 'addon')
-rw-r--r-- | addon/doxywizard/expert.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addon/doxywizard/expert.cpp b/addon/doxywizard/expert.cpp index 170959f..7fd7df3 100644 --- a/addon/doxywizard/expert.cpp +++ b/addon/doxywizard/expert.cpp @@ -427,7 +427,7 @@ static QString getDocsForNode(const QDomElement &child) regexp.setPattern(SA("`([^`]+)`")); docs.replace(regexp,SA("<code>\\1</code>")); // \ref key "desc" -> <code>desc</code> - regexp.setPattern(SA("\\\\ref[ ]+[^ ]+[ ]+\"([^ ]+)\"")); + regexp.setPattern(SA("\\\\ref[ ]+[^ ]+[ ]+\"([^\"]+)\"")); docs.replace(regexp,SA("<code>\\1</code> ")); //\ref specials // \ref <key> -> description |