diff options
author | Oz Linden <oz@lindenlab.com> | 2015-06-19 17:49:05 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2015-06-19 17:49:05 -0400 |
commit | 1cfa126279f06bf4de7b78af0a2ab09a5a3a9759 (patch) | |
tree | b876d992abbaf3636caa278d3b631c66532e9c9b /indra/newview/llpresetsmanager.cpp | |
parent | 95fc2d48eced78b2aaa29b9e8b3f9410eed1ad8c (diff) |
workarounds to get this building again; note: review mute list caching change before promoting
Diffstat (limited to 'indra/newview/llpresetsmanager.cpp')
-rw-r--r-- | indra/newview/llpresetsmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpresetsmanager.cpp b/indra/newview/llpresetsmanager.cpp index 9fa5282862..dd25c0d1b8 100644 --- a/indra/newview/llpresetsmanager.cpp +++ b/indra/newview/llpresetsmanager.cpp @@ -177,7 +177,7 @@ bool LLPresetsManager::savePreset(const std::string& subdirectory, const std::st std::string pathName(getPresetsDir(subdirectory) + gDirUtilp->getDirDelimiter() + LLURI::escape(name) + ".xml"); // write to file - llofstream presetsXML(pathName); + llofstream presetsXML(pathName.c_str()); if (!presetsXML.is_open()) { LL_WARNS("Presets") << "Cannot open for output preset file " << pathName << LL_ENDL; |