diff options
author | Merov Linden <merov@lindenlab.com> | 2012-07-03 19:58:49 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2012-07-03 19:58:49 -0700 |
commit | cea3c37dcb09eb30cb986ecac4d29a4ff1cc0898 (patch) | |
tree | c72a9e179576c211af2bdb754e4ddefd897b65f4 /indra/newview/llimfloatercontainer.cpp | |
parent | c63be504e48cfbfd45689694f69c79da008c4c1f (diff) |
CHUI-164 : Fix crash when closing conversations using the conversation widget. Populated the sessionRemoved() method with code to close the floater and clean up the list.
Diffstat (limited to 'indra/newview/llimfloatercontainer.cpp')
-rw-r--r-- | indra/newview/llimfloatercontainer.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/indra/newview/llimfloatercontainer.cpp b/indra/newview/llimfloatercontainer.cpp index 261b5f33a2..08ace601a3 100644 --- a/indra/newview/llimfloatercontainer.cpp +++ b/indra/newview/llimfloatercontainer.cpp @@ -73,8 +73,15 @@ LLIMFloaterContainer::~LLIMFloaterContainer() void LLIMFloaterContainer::sessionVoiceOrIMStarted(const LLUUID& session_id) { - LLIMFloater::show(session_id); -}; + LLIMFloater::show(session_id); +} + +void LLIMFloaterContainer::sessionRemoved(const LLUUID& session_id) +{ + LLIMFloater* floaterp = LLIMFloater::findInstance(session_id); + LLFloater::onClickClose(floaterp); + removeConversationListItem(floaterp); +} BOOL LLIMFloaterContainer::postBuild() { |