File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -472,7 +472,7 @@ void DirDefImpl::writeTagFile(TextStream &tagFile)
472
472
{
473
473
tagFile << " <compound kind=\" dir\" >\n " ;
474
474
tagFile << " <name>" << convertToXML (displayName ()) << " </name>\n " ;
475
- tagFile << " <path>" << convertToXML (name ()) << " </path>\n " ;
475
+ tagFile << " <path>" << convertToXML (stripFromPath ( name () )) << " </path>\n " ;
476
476
tagFile << " <filename>" << addHtmlExtensionIfMissing (getOutputFileBase ()) << " </filename>\n " ;
477
477
for (const auto &lde : LayoutDocManager::instance ().docEntries (LayoutDocManager::Directory))
478
478
{
Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ void FileDefImpl::writeTagFile(TextStream &tagFile)
317
317
{
318
318
tagFile << " <compound kind=\" file\" >\n " ;
319
319
tagFile << " <name>" << convertToXML (name ()) << " </name>\n " ;
320
- tagFile << " <path>" << convertToXML (getPath ()) << " </path>\n " ;
320
+ tagFile << " <path>" << convertToXML (stripFromPath ( getPath () )) << " </path>\n " ;
321
321
tagFile << " <filename>" << addHtmlExtensionIfMissing (getOutputFileBase ()) << " </filename>\n " ;
322
322
for (const auto &ii : m_includeList)
323
323
{
You can’t perform that action at this time.
0 commit comments