summaryrefslogtreecommitdiff
path: root/indra/newview/llimview.cpp
diff options
context:
space:
mode:
authorRoxie Linden <roxie@lindenlab.com>2010-04-21 18:17:11 -0700
committerRoxie Linden <roxie@lindenlab.com>2010-04-21 18:17:11 -0700
commit5b9da4e8d91acd075dfaf33fb489c480c25e9ade (patch)
treef296e32b384b341d9c626a4305cd7cd8924c9986 /indra/newview/llimview.cpp
parentc139e52a5bf1ca2273d4fd22f28f55b12ba8a2d7 (diff)
parent144b8349b3f0773ac575e178a0e3109d963be9a8 (diff)
Automated merge
Diffstat (limited to 'indra/newview/llimview.cpp')
-rw-r--r--indra/newview/llimview.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp
index 109090a75a..ed21ffd6a6 100644
--- a/indra/newview/llimview.cpp
+++ b/indra/newview/llimview.cpp
@@ -2741,6 +2741,12 @@ bool LLIMMgr::endCall(const LLUUID& session_id)
if (!voice_channel) return false;
voice_channel->deactivate();
+ LLIMModel::LLIMSession* im_session = LLIMModel::getInstance()->findIMSession(session_id);
+ if (im_session)
+ {
+ // need to update speakers' state
+ im_session->mSpeakers->update(FALSE);
+ }
return true;
}