diff options
Diffstat (limited to 'src/page.h')
-rw-r--r-- | src/page.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -85,7 +85,10 @@ class PageInfo SectionInfo *si; for (;(si=sdi.current());++sdi) { - Doxygen::tagFile << " <docanchor>" << si->label << "</docanchor>" << endl; + if (!si->generated) + { + Doxygen::tagFile << " <docanchor>" << si->label << "</docanchor>" << endl; + } } } } |