diff options
Diffstat (limited to 'indra/newview/llagentpilot.cpp')
-rwxr-xr-x | indra/newview/llagentpilot.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/indra/newview/llagentpilot.cpp b/indra/newview/llagentpilot.cpp index 44589f0d57..4b3b0e42e0 100755 --- a/indra/newview/llagentpilot.cpp +++ b/indra/newview/llagentpilot.cpp @@ -84,7 +84,7 @@ void LLAgentPilot::loadTxt(const std::string& filename) return; } - llifstream file(filename); + std::ifstream file(filename.c_str()); if (!file) { @@ -125,7 +125,7 @@ void LLAgentPilot::loadXML(const std::string& filename) return; } - llifstream file(filename); + std::ifstream file(filename.c_str()); if (!file) { @@ -167,8 +167,8 @@ void LLAgentPilot::save() void LLAgentPilot::saveTxt(const std::string& filename) { - llofstream file; - file.open(filename); + std::ofstream file; + file.open(filename.c_str()); if (!file) { @@ -190,8 +190,8 @@ void LLAgentPilot::saveTxt(const std::string& filename) void LLAgentPilot::saveXML(const std::string& filename) { - llofstream file; - file.open(filename); + std::ofstream file; + file.open(filename.c_str()); if (!file) { |