diff options
author | Rider Linden <none@none> | 2015-04-13 09:37:09 -0700 |
---|---|---|
committer | Rider Linden <none@none> | 2015-04-13 09:37:09 -0700 |
commit | fe8dec32dbdd6085dd582c49134551638561ca0e (patch) | |
tree | 8adf11b88185879911fca64825e73b95ff9db972 /indra/newview/llfloatermodelpreview.cpp | |
parent | 2d3e4576d7a1f6d5f2a9c0596cefe3f62753b2fa (diff) | |
parent | 5c6cf3e7fb9f592e3a293921175b64b515bac23f (diff) |
Merge
Diffstat (limited to 'indra/newview/llfloatermodelpreview.cpp')
-rwxr-xr-x | indra/newview/llfloatermodelpreview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloatermodelpreview.cpp b/indra/newview/llfloatermodelpreview.cpp index ec905558aa..b9113d265a 100755 --- a/indra/newview/llfloatermodelpreview.cpp +++ b/indra/newview/llfloatermodelpreview.cpp @@ -2155,7 +2155,7 @@ bool LLModelLoader::loadFromSLM(const std::string& filename) S32 file_size = (S32) stat.st_size; - llifstream ifstream(filename, std::ifstream::in | std::ifstream::binary); + llifstream ifstream(filename.c_str(), std::ifstream::in | std::ifstream::binary); LLSD data; LLSDSerialize::fromBinary(data, ifstream, file_size); ifstream.close(); @@ -3513,7 +3513,7 @@ void LLModelPreview::saveUploadData(const std::string& filename, bool save_skinw data["instance"][i] = instance.asLLSD(); } - llofstream out(filename, std::ios_base::out | std::ios_base::binary); + llofstream out(filename.c_str(), std::ios_base::out | std::ios_base::binary); LLSDSerialize::toBinary(data, out); out.flush(); out.close(); |