Skip to content

Commit

Permalink
Bug 737830 - Invalid element name in footer part when GENERATE_TREEVI…
Browse files Browse the repository at this point in the history
…EW specified
  • Loading branch information
Dimitri van Heesch committed Dec 23, 2014
1 parent f1c9603 commit 5cb9612
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/definition.cpp
Expand Up @@ -1568,12 +1568,12 @@ QCString Definition::navigationPathAsString() const
if (definitionType()==Definition::TypeGroup && ((const GroupDef*)this)->groupTitle())
{
result+="<a class=\"el\" href=\"$relpath^"+getOutputFileBase()+Doxygen::htmlFileExtension+"\">"+
((const GroupDef*)this)->groupTitle()+"</a>";
convertToHtml(((const GroupDef*)this)->groupTitle())+"</a>";
}
else if (definitionType()==Definition::TypePage && !((const PageDef*)this)->title().isEmpty())
{
result+="<a class=\"el\" href=\"$relpath^"+getOutputFileBase()+Doxygen::htmlFileExtension+"\">"+
((const PageDef*)this)->title()+"</a>";
convertToHtml(((const PageDef*)this)->title())+"</a>";
}
else if (definitionType()==Definition::TypeClass)
{
Expand All @@ -1584,17 +1584,17 @@ QCString Definition::navigationPathAsString() const
}
result+="<a class=\"el\" href=\"$relpath^"+getOutputFileBase()+Doxygen::htmlFileExtension;
if (!anchor().isEmpty()) result+="#"+anchor();
result+="\">"+name+"</a>";
result+="\">"+convertToHtml(name)+"</a>";
}
else
{
result+="<a class=\"el\" href=\"$relpath^"+getOutputFileBase()+Doxygen::htmlFileExtension+"\">"+
locName+"</a>";
convertToHtml(locName)+"</a>";
}
}
else
{
result+="<b>"+locName+"</b>";
result+="<b>"+convertToHtml(locName)+"</b>";
}
result+="</li>";
return result;
Expand Down

0 comments on commit 5cb9612

Please sign in to comment.