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

Fix TString / string_view conversion.

parent a8e23704
No related branches found
No related tags found
No related merge requests found
......@@ -31,8 +31,8 @@ TDrawingOptsReader::Attrs_t TDrawingOptsReader::ReadDefaults()
{
Attrs_t ret;
TDrawingOptsReader reader(ret);
reader.AddFromStyleFile(TROOT::GetEtcDir() + "/system.rootstylerc");
reader.AddFromStyleFile(gSystem->GetHomeDirectory() + "/.rootstylerc");
reader.AddFromStyleFile(std::string(TROOT::GetEtcDir()) + "/system.rootstylerc");
reader.AddFromStyleFile(std::string(gSystem->GetHomeDirectory()) + "/.rootstylerc");
reader.AddFromStyleFile(".rootstylerc");
return ret;
}
......
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