summaryrefslogtreecommitdiff
path: root/indra/newview/llexperiencelog.cpp
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2015-06-08 17:35:18 -0400
committerOz Linden <oz@lindenlab.com>2015-06-08 17:35:18 -0400
commit1fce3cc89eca7edf05ef550707e955af3d4d5fc7 (patch)
tree96d70412eba42fd939c75f094d45cbbcb68b5ef8 /indra/newview/llexperiencelog.cpp
parent949942c730b0b7463338c2cb3bc411ac12f4f648 (diff)
corrections needed for new tools
Diffstat (limited to 'indra/newview/llexperiencelog.cpp')
-rw-r--r--indra/newview/llexperiencelog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llexperiencelog.cpp b/indra/newview/llexperiencelog.cpp
index 7b594577db..ec6134a4b3 100644
--- a/indra/newview/llexperiencelog.cpp
+++ b/indra/newview/llexperiencelog.cpp
@@ -188,7 +188,7 @@ void LLExperienceLog::saveEvents()
settings["Notify"] = mNotifyNewEvent;
settings["PageSize"] = (int)mPageSize;
- llofstream stream(filename);
+ llofstream stream(filename.c_str());
LLSDSerialize::toPrettyXML(settings, stream);
}
@@ -198,7 +198,7 @@ void LLExperienceLog::loadEvents()
LLSD settings = LLSD::emptyMap();
std::string filename = getFilename();
- llifstream stream(filename);
+ llifstream stream(filename.c_str());
LLSDSerialize::fromXMLDocument(settings, stream);
if(settings.has("MaxDays"))