diff options
author | Merov Linden <merov@lindenlab.com> | 2012-06-29 14:29:56 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2012-06-29 14:29:56 -0700 |
commit | 5eab95955fec4d3dcb8b2f98c6c084d227e70b8c (patch) | |
tree | d1af9aa3d4dfee39ed4ecba6bba2cb78e12723fd /indra/newview/llimconversation.cpp | |
parent | 71deb6d500238900bf7bf62cf957a68c063ade56 (diff) |
CHUI-164 : Fix conversation list index using handle to floater rather than uuid. Simplify the code accordingly (suppress hacks).
Diffstat (limited to 'indra/newview/llimconversation.cpp')
-rw-r--r-- | indra/newview/llimconversation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llimconversation.cpp b/indra/newview/llimconversation.cpp index d7ef65edb6..dc68c5cea1 100644 --- a/indra/newview/llimconversation.cpp +++ b/indra/newview/llimconversation.cpp @@ -359,7 +359,7 @@ void LLIMConversation::onClose(bool app_quitting) LLIMFloaterContainer* im_box = LLIMFloaterContainer::findInstance(); if (im_box) { - im_box->removeConversationListItem(mSessionID,this); + im_box->removeConversationListItem(this); } } } |