File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -9918,19 +9918,21 @@ static void readDir(FileInfo *fi,
9918
9918
)
9919
9919
{
9920
9920
std::string name=cfi.fileName ();
9921
+ std::string path=cfi.dirPath ()+" /" ;
9922
+ std::string fullName=path+name;
9921
9923
if (fnMap)
9922
9924
{
9923
- std::unique_ptr<FileDef> fd { createFileDef (QCString (cfi. dirPath ()+ " / " ),QCString (name)) };
9925
+ std::unique_ptr<FileDef> fd { createFileDef (QCString (path ),QCString (name)) };
9924
9926
FileName *fn=0 ;
9925
9927
if (!name.empty ())
9926
9928
{
9927
- fn = fnMap->add (QCString (name),QCString (cfi. absFilePath () ));
9929
+ fn = fnMap->add (QCString (name),QCString (fullName ));
9928
9930
fn->push_back (std::move (fd));
9929
9931
}
9930
9932
}
9931
- if (resultList) resultList->push_back (cfi. absFilePath () );
9932
- if (resultSet) resultSet->insert (cfi. absFilePath () );
9933
- if (killSet) killSet->insert (cfi. absFilePath () );
9933
+ if (resultList) resultList->push_back (fullName );
9934
+ if (resultSet) resultSet->insert (fullName );
9935
+ if (killSet) killSet->insert (fullName );
9934
9936
}
9935
9937
else if (recursive &&
9936
9938
(!Config_getBool (EXCLUDE_SYMLINKS) || !cfi.isSymLink ()) &&
You can’t perform that action at this time.
0 commit comments