We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 08e95ca + 92c33c4 commit 825c0c6Copy full SHA for 825c0c6
1 file changed
src/ftvhelp.cpp
@@ -556,15 +556,13 @@ static bool dupOfParent(const FTVNodePtr &n)
556
static void generateJSLink(TextStream &t,const FTVNodePtr &n)
557
{
558
bool nameAsHtml = !n->nameAsHtml.isEmpty();
559
- QCString result = nameAsHtml ? n->nameAsHtml : n->name;
560
- QCString link = convertToJSString(result,nameAsHtml);
+ QCString link = nameAsHtml ? n->nameAsHtml : convertToJSString(n->name);
561
if (n->file.isEmpty()) // no link
562
563
t << "\"" << link << "\", null, ";
564
}
565
else // link into other page
566
567
- if (Config_getBool(HIDE_SCOPE_NAMES)) result=stripScope(result);
568
t << "\"" << link << "\", \"";
569
t << externalRef("",n->ref,TRUE);
570
t << node2URL(n);
0 commit comments