diff options
author | Paul ProductEngine <pguslisty@productengine.com> | 2012-08-15 15:03:19 +0300 |
---|---|---|
committer | Paul ProductEngine <pguslisty@productengine.com> | 2012-08-15 15:03:19 +0300 |
commit | 039cc929d09828b449d3d9ec29c9ea297af56088 (patch) | |
tree | 9f8d3d01006faf2805d7fb12ed7130583345374e /indra/newview/llconversationlog.cpp | |
parent | c01254daf16adb3d91ad8990ba5c66d2b51eae45 (diff) |
CHUI-257 FIXED (Using clear cache option in preferences clears call log also)
- Changed location where call log file is saved. Now it's saved with other user settings files under each avatar's directory in the user settings directory.
Diffstat (limited to 'indra/newview/llconversationlog.cpp')
-rw-r--r-- | indra/newview/llconversationlog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llconversationlog.cpp b/indra/newview/llconversationlog.cpp index 137b97326c..b6713465f3 100644 --- a/indra/newview/llconversationlog.cpp +++ b/indra/newview/llconversationlog.cpp @@ -241,7 +241,7 @@ std::string LLConversationLog::getFileName() std::string agent_id_string; gAgent.getID().toString(agent_id_string); - return gDirUtilp->getExpandedFilename(LL_PATH_CACHE, agent_id_string) + ".call_log"; + return gDirUtilp->getExpandedFilename(LL_PATH_PER_SL_ACCOUNT, agent_id_string) + ".call_log"; } bool LLConversationLog::saveToFile(const std::string& filename) |