Skip to content

Commit

Permalink
issue #8487: Doxygen doesn't generate links to C# classes in differen…
Browse files Browse the repository at this point in the history
…t namespaces
  • Loading branch information
doxygen committed Apr 30, 2022
1 parent 4d3c07d commit 54dd8c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/code.l
Original file line number Diff line number Diff line change
Expand Up @@ -3276,7 +3276,7 @@ static void generateFunctionLink(yyscan_t yyscanner,CodeOutputInterface &ol,cons
QCString funcWithScope=locFunc;
QCString funcWithFullScope=locFunc;
QCString fullScope=locScope;
DBG_CTX((stdout,"*** locScope=%s locFunc=%s\n",qPrint(locScope),qPrint(locFunc)));
DBG_CTX((stderr,"*** locScope=%s locFunc=%s\n",qPrint(locScope),qPrint(locFunc)));
int len=2;
int i=locFunc.findRev("::");
if (yyextra->currentMemberDef && yyextra->currentMemberDef->resolveAlias()->getClassDef() &&
Expand Down Expand Up @@ -3985,7 +3985,7 @@ void CCodeParser::parseCode(CodeOutputInterface &od,const QCString &className,co
{
setCurrentDoc(yyscanner,"l00001");
}
yyextra->currentDefinition = getResolvedNamespace(className);
yyextra->currentDefinition = searchCtx ? searchCtx : getResolvedNamespace(className);
yyextra->currentMemberDef = 0;
yyextra->searchingForBody = exBlock;
yyextra->insideBody = FALSE;
Expand Down

0 comments on commit 54dd8c7

Please sign in to comment.