Skip to content

Commit 825c0c6

Browse files
committed
Merge branch 'albert-github-feature/issue_12092'
2 parents 08e95ca + 92c33c4 commit 825c0c6

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/ftvhelp.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -556,15 +556,13 @@ static bool dupOfParent(const FTVNodePtr &n)
556556
static void generateJSLink(TextStream &t,const FTVNodePtr &n)
557557
{
558558
bool nameAsHtml = !n->nameAsHtml.isEmpty();
559-
QCString result = nameAsHtml ? n->nameAsHtml : n->name;
560-
QCString link = convertToJSString(result,nameAsHtml);
559+
QCString link = nameAsHtml ? n->nameAsHtml : convertToJSString(n->name);
561560
if (n->file.isEmpty()) // no link
562561
{
563562
t << "\"" << link << "\", null, ";
564563
}
565564
else // link into other page
566565
{
567-
if (Config_getBool(HIDE_SCOPE_NAMES)) result=stripScope(result);
568566
t << "\"" << link << "\", \"";
569567
t << externalRef("",n->ref,TRUE);
570568
t << node2URL(n);

0 commit comments

Comments
 (0)