File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 37
37
38
38
QCString searchName (const Definition *d)
39
39
{
40
- return d->definitionType ()==Definition::TypeGroup ? QCString (toGroupDef (d)->groupTitle ()) :
41
- d->definitionType ()==Definition::TypePage ? toPageDef (d)->title () :
40
+ return d->definitionType ()==Definition::TypeGroup ? filterTitle ( QCString (toGroupDef (d)->groupTitle () )) :
41
+ d->definitionType ()==Definition::TypePage ? filterTitle ( toPageDef (d)->title () ) :
42
42
d->localName ();
43
43
}
44
44
@@ -419,7 +419,7 @@ void createJavaScriptSearchIndex()
419
419
{
420
420
if (gd->isLinkable ())
421
421
{
422
- std::string title = gd->groupTitle ().str ();
422
+ std::string title = filterTitle ( gd->groupTitle () ).str ();
423
423
for (const auto & word: splitSearchTokens (title))
424
424
{
425
425
g_searchIndexInfo[SEARCH_INDEX_ALL].add (word,gd.get ());
@@ -433,7 +433,7 @@ void createJavaScriptSearchIndex()
433
433
{
434
434
if (pd->isLinkable ())
435
435
{
436
- std::string title = pd->title ().str ();
436
+ std::string title = filterTitle ( pd->title () ).str ();
437
437
for (const auto & word: splitSearchTokens (title))
438
438
{
439
439
g_searchIndexInfo[SEARCH_INDEX_ALL].add (word,pd.get ());
@@ -443,7 +443,7 @@ void createJavaScriptSearchIndex()
443
443
}
444
444
if (Doxygen::mainPage)
445
445
{
446
- std::string title = Doxygen::mainPage->title ().str ();
446
+ std::string title = filterTitle ( Doxygen::mainPage->title () ).str ();
447
447
for (const auto & word: splitSearchTokens (title))
448
448
{
449
449
g_searchIndexInfo[SEARCH_INDEX_ALL].add (word,Doxygen::mainPage.get ());
You can’t perform that action at this time.
0 commit comments