diff options
author | Merov Linden <merov@lindenlab.com> | 2012-12-17 20:16:33 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2012-12-17 20:16:33 -0800 |
commit | c2d332a89cb29d54df40f1f120304d871278fb76 (patch) | |
tree | 9102fe977dfe35767fd009af6f8cdd9607a9d190 /indra/newview/llconversationlog.cpp | |
parent | 3d137bae5c5435dde305323179d8d3d6c9720bad (diff) |
CHUI-580 : WIP : Added disconnect of callbacks once they're called to prevent filling up the callback queue
Diffstat (limited to 'indra/newview/llconversationlog.cpp')
-rw-r--r-- | indra/newview/llconversationlog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llconversationlog.cpp b/indra/newview/llconversationlog.cpp index f8ccb08e66..3b75cd8203 100644 --- a/indra/newview/llconversationlog.cpp +++ b/indra/newview/llconversationlog.cpp @@ -518,5 +518,6 @@ void LLConversationLog::onNewMessageReceived(const LLSD& data) void LLConversationLog::onAvatarNameCache(const LLUUID& participant_id, const LLAvatarName& av_name, const LLIMModel::LLIMSession* session) { + mAvatarNameCacheConnection.disconnect(); updateConversationName(session, av_name.getCompleteName()); } |