diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2018-12-26 11:03:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-26 11:03:28 (GMT) |
commit | 1f4a3ab39a467b2e5e0159f95ed10cb9830d5011 (patch) | |
tree | 10161b56aaa518f0e823436f38dd67c4e3d76bd9 | |
parent | 3a1ba056b360ff784704e7d2cb594bf820cc28b0 (diff) | |
parent | 2e072c9e3cbc748ac2cdf6453c16d95cbfabf9d7 (diff) | |
download | Doxygen-1f4a3ab39a467b2e5e0159f95ed10cb9830d5011.zip Doxygen-1f4a3ab39a467b2e5e0159f95ed10cb9830d5011.tar.gz Doxygen-1f4a3ab39a467b2e5e0159f95ed10cb9830d5011.tar.bz2 |
Merge pull request #6578 from albert-github/feature/bug_addindex_html
Multiple addindex commands in HTML with same name
-rw-r--r-- | src/htmldocvisitor.cpp | 5 | ||||
-rw-r--r-- | src/htmlhelp.cpp | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/src/htmldocvisitor.cpp b/src/htmldocvisitor.cpp index da0dab9..6386cb8 100644 --- a/src/htmldocvisitor.cpp +++ b/src/htmldocvisitor.cpp @@ -68,7 +68,12 @@ static const char *contexts[10] = static QCString convertIndexWordToAnchor(const QString &word) { static char hex[] = "0123456789abcdef"; + static int cnt = 0; QCString result="a"; + QCString cntStr; + result += cntStr.setNum(cnt); + result += "_"; + cnt++; const char *str = word.data(); unsigned char c; if (str) diff --git a/src/htmlhelp.cpp b/src/htmlhelp.cpp index ad56de8..3ed3d64 100644 --- a/src/htmlhelp.cpp +++ b/src/htmlhelp.cpp @@ -115,7 +115,7 @@ void HtmlHelpIndex::addItem(const char *level1,const char *level2, { return; } - if (dict->find(key)==0) // new key + if (dict->find(key+anchor)==0) // new key { //printf(">>>>>>>>> HtmlHelpIndex::addItem(%s,%s,%s,%s)\n", // level1,level2,url,anchor); @@ -125,7 +125,7 @@ void HtmlHelpIndex::addItem(const char *level1,const char *level2, f->anchor = anchor; f->link = hasLink; f->reversed = reversed; - dict->append(key,f); + dict->append(key+anchor,f); } } @@ -187,7 +187,7 @@ void HtmlHelpIndex::writeFields(FTextStream &t) level1 = f->name.copy(); } - if (level1!=lastLevel1) + //if (level1!=lastLevel1) { // finish old list at level 2 if (level2Started) t << " </UL>" << endl; level2Started=FALSE; |