diff options
author | Gilbert Gonzales <gilbert@lindenlab.com> | 2012-08-23 15:14:57 -0700 |
---|---|---|
committer | Gilbert Gonzales <gilbert@lindenlab.com> | 2012-08-23 15:14:57 -0700 |
commit | 5046e77d155bed68cbf9657616b091849c352750 (patch) | |
tree | c53bf6276400d9bf15b697a1297e2eda3a19a3d2 /indra/newview/llconversationlog.cpp | |
parent | 42701ad3233bfeddf42fb1163f2b83d810b27131 (diff) | |
parent | ff95dd4a43fd888a9b7353abcbfa701e4844a3a5 (diff) |
merging in latest changes.
Diffstat (limited to 'indra/newview/llconversationlog.cpp')
-rw-r--r-- | indra/newview/llconversationlog.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/newview/llconversationlog.cpp b/indra/newview/llconversationlog.cpp index b6713465f3..486cea4064 100644 --- a/indra/newview/llconversationlog.cpp +++ b/indra/newview/llconversationlog.cpp @@ -238,10 +238,8 @@ void LLConversationLog::cache() std::string LLConversationLog::getFileName() { - std::string agent_id_string; - gAgent.getID().toString(agent_id_string); - - return gDirUtilp->getExpandedFilename(LL_PATH_PER_SL_ACCOUNT, agent_id_string) + ".call_log"; + std::string filename = "conversation"; + return gDirUtilp->getExpandedFilename(LL_PATH_PER_SL_ACCOUNT, filename) + ".log"; } bool LLConversationLog::saveToFile(const std::string& filename) |