Commit fdc1768f authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 708455 - Enabling INLINE_SIMPLE_STRUCTS messes up Data Structures in tree

parent 94cab0a0
...@@ -1129,7 +1129,14 @@ static bool generateJSTree(NavIndexEntryList &navIndex,FTextStream &t, ...@@ -1129,7 +1129,14 @@ static bool generateJSTree(NavIndexEntryList &navIndex,FTextStream &t,
if (n->children.count()>0) // write children to separate file for dynamic loading if (n->children.count()>0) // write children to separate file for dynamic loading
{ {
QCString fileId = n->file; QCString fileId = n->file;
if (dupOfParent(n)) fileId+="_dup"; if (n->anchor)
{
fileId+="_"+n->anchor;
}
if (dupOfParent(n))
{
fileId+="_dup";
}
QFile f(htmlOutput+"/"+fileId+".js"); QFile f(htmlOutput+"/"+fileId+".js");
if (f.open(IO_WriteOnly)) if (f.open(IO_WriteOnly))
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment