From 4952c20194ab1b59e914cabdbe44d609a138b393 Mon Sep 17 00:00:00 2001 From: albert-github Date: Sun, 27 Oct 2019 12:02:21 +0100 Subject: 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). --- src/code.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v0.12