diff options
author | Cho <cho@lindenlab.com> | 2013-02-11 20:39:03 +0000 |
---|---|---|
committer | Cho <cho@lindenlab.com> | 2013-02-11 20:39:03 +0000 |
commit | f6b9d2bce45818f15e2882a7cb34ce9ea7a2e4ba (patch) | |
tree | a15d23b52c1c8996665a02358a8a386223f23e38 /indra/newview | |
parent | 33d49d15693de15527960476b816845f8b3d6d54 (diff) |
CHUI-760 FIX Conversation.log file not saved in user specified location
Changed LLConversationLog::getFileName() to use LL_PATH_PER_ACCOUNT_CHAT_LOGS instead of LL_PATH_PER_SL_ACCOUNT
Diffstat (limited to 'indra/newview')
-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 4e707ac76e..15d61e978d 100644 --- a/indra/newview/llconversationlog.cpp +++ b/indra/newview/llconversationlog.cpp @@ -378,7 +378,7 @@ void LLConversationLog::cache() std::string LLConversationLog::getFileName() { std::string filename = "conversation"; - return gDirUtilp->getExpandedFilename(LL_PATH_PER_SL_ACCOUNT, filename) + ".log"; + return gDirUtilp->getExpandedFilename(LL_PATH_PER_ACCOUNT_CHAT_LOGS, filename) + ".log"; } bool LLConversationLog::saveToFile(const std::string& filename) |