diff options
Diffstat (limited to 'src/definition.cpp')
-rw-r--r-- | src/definition.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/definition.cpp b/src/definition.cpp index 57d585e..4470bf2 100644 --- a/src/definition.cpp +++ b/src/definition.cpp @@ -164,7 +164,9 @@ void Definition::writeDocAnchorsToTagFile() { //printf("write an entry!\n"); if (definitionType()==TypeMember) Doxygen::tagFile << " "; - Doxygen::tagFile << " <docanchor>" << si->label << "</docanchor>" << endl; + Doxygen::tagFile << " <docanchor file=\"" + << si->fileName << "\">" << si->label + << "</docanchor>" << endl; } } } |