diff options
author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2013-02-15 13:27:37 +0200 |
---|---|---|
committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2013-02-15 13:27:37 +0200 |
commit | eb8611de12abebb30c4d4f1d418165486cd59faa (patch) | |
tree | 2a46c6b2b9e01bfe9bcac16de71e8a16ecad39a1 /indra/newview | |
parent | c0433f1460b5cd96c093e3955ecf4ddcb6376f92 (diff) |
CHUI-755 FIXED cache() is called to update conversation.log file after deleting conversations.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llconversationlog.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llconversationlog.cpp b/indra/newview/llconversationlog.cpp index 22277e6421..23a98fa136 100644 --- a/indra/newview/llconversationlog.cpp +++ b/indra/newview/llconversationlog.cpp @@ -333,6 +333,7 @@ void LLConversationLog::removeConversation(const LLConversation& conversation) { mConversations.erase(conv_it); notifyObservers(); + cache(); return; } } @@ -534,5 +535,6 @@ void LLConversationLog::onClearLogResponse(const LLSD& notification, const LLSD& { mConversations.clear(); notifyObservers(); + cache(); } } |