diff options
author | Cho <cho@lindenlab.com> | 2013-02-11 20:02:19 +0000 |
---|---|---|
committer | Cho <cho@lindenlab.com> | 2013-02-11 20:02:19 +0000 |
commit | 33d49d15693de15527960476b816845f8b3d6d54 (patch) | |
tree | 08be5fffff2490d546c01ba3aacdb014b0eb87c2 /indra/newview/llconversationlog.h | |
parent | 5066e850df6e44e65bf7760ac990fdd5ed1c7b8e (diff) |
CHUI-755 FIX Conversation log changes in a session are lost if viewer crashes
Added call to LLConversationLog::instance().cache() after LLLogChat::SaveHistory() in LLIMView::logToFile()
Diffstat (limited to 'indra/newview/llconversationlog.h')
-rw-r--r-- | indra/newview/llconversationlog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llconversationlog.h b/indra/newview/llconversationlog.h index d5b6eccb29..fd38556131 100644 --- a/indra/newview/llconversationlog.h +++ b/indra/newview/llconversationlog.h @@ -58,7 +58,7 @@ public: const time_t& getTime() const { return mTime; } bool hasOfflineMessages() const { return mHasOfflineIMs; } - void setConverstionName(std::string conv_name) { mConversationName = conv_name; } + void setConversationName(std::string conv_name) { mConversationName = conv_name; } void setOfflineMessages(bool new_messages) { mHasOfflineIMs = new_messages; } bool isOlderThan(U32 days) const; |