diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2015-10-24 17:48:18 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2015-10-24 21:56:27 (GMT) |
commit | af5c5b37c5464afb6a2df71edf6f9e82ece75187 (patch) | |
tree | a1aeaeaa1cff1c1d8f11c064f3006a48e82f134a /src/doxygen.cpp | |
parent | 3a318681dc497127ebebd38a20a537c5dff74cc0 (diff) | |
download | Doxygen-af5c5b37c5464afb6a2df71edf6f9e82ece75187.zip Doxygen-af5c5b37c5464afb6a2df71edf6f9e82ece75187.tar.gz Doxygen-af5c5b37c5464afb6a2df71edf6f9e82ece75187.tar.bz2 |
Bug 755080 - xrefitem link to list incorrect when using SHORT_NAMES
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index f92d8b4..3341b3a 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -8704,7 +8704,7 @@ static void findMainPage(EntryNav *rootNav) indexName, root->brief+root->doc+root->inbodyDocs,title); //setFileNameForSections(root->anchors,"index",Doxygen::mainPage); Doxygen::mainPage->setBriefDescription(root->brief,root->briefFile,root->briefLine); - Doxygen::mainPage->setFileName(indexName,TRUE); + Doxygen::mainPage->setFileName(indexName); Doxygen::mainPage->setShowToc(root->stat); addPageToContext(Doxygen::mainPage,rootNav); @@ -8933,7 +8933,7 @@ static void buildExampleList(EntryNav *rootNav) PageDef *pd=new PageDef(root->fileName,root->startLine, root->name,root->brief+root->doc+root->inbodyDocs,root->args); pd->setBriefDescription(root->brief,root->briefFile,root->briefLine); - pd->setFileName(convertNameToFile(pd->name()+"-example",FALSE,TRUE),FALSE); + pd->setFileName(convertNameToFile(pd->name()+"-example",FALSE,TRUE)); pd->addSectionsToDefinition(root->anchors); pd->setLanguage(root->lang); //pi->addSections(root->anchors); |