From ebb2fe6d73b4aefc6dadab8eec45adc4ee0c9fd5 Mon Sep 17 00:00:00 2001 From: Dimitri van Heesch Date: Tue, 19 Aug 2014 12:21:10 +0200 Subject: [PATCH] Bug 735001 - No output for markdown pages with duplicate label title (different anchor) --- src/markdown.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/markdown.cpp b/src/markdown.cpp index 11b01ea2d13..cc86af48203 100644 --- a/src/markdown.cpp +++ b/src/markdown.cpp @@ -1706,7 +1706,7 @@ void writeOneLineHeaderOrRuler(GrowBuf &out,const char *data,int size) out.addStr(" "); out.addStr(header); out.addStr("\n"); - SectionInfo *si = Doxygen::sectionDict->find(header); + SectionInfo *si = Doxygen::sectionDict->find(id); if (si) { if (si->lineNr != -1) @@ -1725,7 +1725,7 @@ void writeOneLineHeaderOrRuler(GrowBuf &out,const char *data,int size) { g_current->anchors->append(si); } - Doxygen::sectionDict->append(header,si); + Doxygen::sectionDict->append(id,si); } } else @@ -2076,7 +2076,7 @@ static QCString processBlocks(const QCString &s,int indent) out.addStr(" "); out.addStr(header); out.addStr("\n\n"); - SectionInfo *si = Doxygen::sectionDict->find(header); + SectionInfo *si = Doxygen::sectionDict->find(id); if (si) { if (si->lineNr != -1) @@ -2096,7 +2096,7 @@ static QCString processBlocks(const QCString &s,int indent) { g_current->anchors->append(si); } - Doxygen::sectionDict->append(header,si); + Doxygen::sectionDict->append(id,si); } } else