summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-10-27 11:02:21 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-10-27 11:02:21 (GMT)
commit4952c20194ab1b59e914cabdbe44d609a138b393 (patch)
tree65c8c0652c1f48f05d30a179ac376f6e674e6b4a
parentd0d748aee7fdd0469479d7feff16f337322a2175 (diff)
downloadDoxygen-4952c20194ab1b59e914cabdbe44d609a138b393.zip
Doxygen-4952c20194ab1b59e914cabdbe44d609a138b393.tar.gz
Doxygen-4952c20194ab1b59e914cabdbe44d609a138b393.tar.bz2
issue #7119 Doxygen does not link to C# snippets - regression
Looks like the `isLinkableIeInProject` is a bit to strict and `isLinkable` has to be used (also the original pull request #6489 still works OK).
-rw-r--r--src/code.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code.l b/src/code.l
index 9428432..482dda6 100644
--- a/src/code.l
+++ b/src/code.l
@@ -986,7 +986,7 @@ static void generateClassOrGlobalLink(CodeOutputInterface &ol,const char *clName
}
}
const NamespaceDef *nd = getResolvedNamespace(className);
- if (nd && nd->isLinkableInProject())
+ if (nd && nd->isLinkable())
{
g_theCallContext.setScope(nd);
addToSearchIndex(className);