diff options
author | Paul ProductEngine <pguslisty@productengine.com> | 2012-08-21 20:02:29 +0300 |
---|---|---|
committer | Paul ProductEngine <pguslisty@productengine.com> | 2012-08-21 20:02:29 +0300 |
commit | f809409de5df3f5ddef24433a4310b18caf3cd8a (patch) | |
tree | 986e7c9f2bc70009083c2352a8cd95e005520e59 | |
parent | e50364b22881efecbb75041d48152d61ddbbe6c9 (diff) |
CHUI-300 FIXED (Simplify conversation log name saved to user settings?)
- Changed file name agentID#.call_log to conversation.log
-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) |