Skip to content

Commit

Permalink
Merge branch 'master' of github.com:doxygen/doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
doxygen committed Feb 16, 2022
2 parents 24e6b6d + 4eab2c4 commit 9a5fff0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/clangparser.cpp
Expand Up @@ -489,7 +489,7 @@ std::string ClangTUParser::lookup(uint line,const char *symbol)
void ClangTUParser::writeLineNumber(CodeOutputInterface &ol,const FileDef *fd,uint line,bool writeLineAnchor)
{
const Definition *d = fd ? fd->getSourceDefinition(line) : 0;
if (d && d->isLinkable())
if (d && fd->isLinkable())
{
p->currentLine=line;
const MemberDef *md = fd->getSourceMember(line);
Expand Down
4 changes: 2 additions & 2 deletions templates/latex/header.tex
Expand Up @@ -172,8 +172,8 @@
linkcolor=blue,%
citecolor=blue,%
unicode,%
pdftitle=$projectname,%
pdfsubject=$projectbrief%
pdftitle={$projectname},%
pdfsubject={$projectbrief}%
}
%%END PDF_HYPERLINKS
Expand Down

0 comments on commit 9a5fff0

Please sign in to comment.