Skip to content
Snippets Groups Projects
Commit aa758785 authored by Axel Naumann's avatar Axel Naumann
Browse files

Fix index of a few TMVA and RooStats classes: they had a DeclFileName...

Fix index of a few TMVA and RooStats classes: they had a DeclFileName beginning with "./" which confused THtml.


git-svn-id: http://root.cern.ch/svn/root/trunk@37363 27541ba8-7e3a-0410-8455-c3a389f83636
parent dbf0cfeb
No related branches found
No related tags found
No related merge requests found
......@@ -289,6 +289,8 @@ void THtml::TFileDefinition::NormalizePath(TString& filename) const
TPRegexp reg(TString::Format("%s[^%s]+%s\\.\\.%s", d, d, d, d));
while (reg.Substitute(filename, TString(d[0]), "", 0, 1)) {}
}
if (filename.BeginsWith("./") || filename.BeginsWith(".\\"))
filename.Remove(0,2);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment