summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-10-11 10:44:01 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-10-11 10:44:01 (GMT)
commit0077ab48f682cca9caf99b2d92a8448d1d66cb98 (patch)
treef67c60b43a6ff0f6b8f320df644561d79612483a /src/doxygen.cpp
parent36eefaf9a5faeb828c0d99bffb731747a59f17fe (diff)
downloadDoxygen-0077ab48f682cca9caf99b2d92a8448d1d66cb98.zip
Doxygen-0077ab48f682cca9caf99b2d92a8448d1d66cb98.tar.gz
Doxygen-0077ab48f682cca9caf99b2d92a8448d1d66cb98.tar.bz2
issue_6547 Call graph missing due to ALIASES
Replace the `^^` in an alias not with an physical newline but with a doxygen synthetic newline. Shown problem is due to the fact that line matching didn't work anymore due to the fact that a physical newline was inserted (ever better seen when enabling `INLINE_SOURCES`)
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 9d8a914..13c60fb 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -9889,7 +9889,7 @@ static void escapeAliases()
while ((in=value.find("^^",p))!=-1)
{
newValue+=value.mid(p,in-p);
- newValue+="\n";
+ newValue+="\\_linebr";
p=in+2;
}
newValue+=value.mid(p,value.length()-p);