Skip to content

Commit be4fd93

Browse files
committed
issue doxygen#11423 Allow explicit linking inside of name objects (\throws, \retval...)
1 parent 2cc77a0 commit be4fd93

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/docnode.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4733,10 +4733,14 @@ Token DocPara::handleCommand(char cmdChar, const QCString &cmdName)
47334733
retval = handleParamSection(cmdName,DocParamSect::TemplateParam,FALSE,parser()->context.token->paramDir);
47344734
break;
47354735
case CommandType::CMD_RETVAL:
4736+
parser()->context.inSeeBlock=true;
47364737
retval = handleParamSection(cmdName,DocParamSect::RetVal);
4738+
parser()->context.inSeeBlock=false;
47374739
break;
47384740
case CommandType::CMD_EXCEPTION:
4741+
parser()->context.inSeeBlock=true;
47394742
retval = handleParamSection(cmdName,DocParamSect::Exception);
4743+
parser()->context.inSeeBlock=false;
47404744
break;
47414745
case CommandType::CMD_XREFITEM:
47424746
retval = handleXRefItem();

0 commit comments

Comments
 (0)