diff options
author | Merov Linden <merov@lindenlab.com> | 2012-08-23 11:32:20 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2012-08-23 11:32:20 -0700 |
commit | 4ea73df484d22815026367771f9d728d755f6274 (patch) | |
tree | 6ffe6dc0eb3d2cb25bf5237130aa501b6dff3262 /indra/newview/llimfloatercontainer.cpp | |
parent | 679d0f78f9a4a83e5eb2ec857ceb2d9b8c6f4d91 (diff) |
CHUI-282 : WIP : Further separate view from model for llconversation items
Diffstat (limited to 'indra/newview/llimfloatercontainer.cpp')
-rw-r--r-- | indra/newview/llimfloatercontainer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llimfloatercontainer.cpp b/indra/newview/llimfloatercontainer.cpp index 29878cfc9e..38ac3eb9e4 100644 --- a/indra/newview/llimfloatercontainer.cpp +++ b/indra/newview/llimfloatercontainer.cpp @@ -328,10 +328,10 @@ void LLIMFloaterContainer::setVisible(BOOL visible) // We need to show/hide all the associated conversations that have been torn off // (and therefore, are not longer managed by the multifloater), // so that they show/hide with the conversations manager. - conversations_items_map::iterator item_it = mConversationsItems.begin(); - for (;item_it != mConversationsItems.end(); ++item_it) + conversations_widgets_map::iterator item_it = mConversationsWidgets.begin(); + for (;item_it != mConversationsWidgets.end(); ++item_it) { - LLConversationItem* item = item_it->second; + LLConversationViewSession* item = dynamic_cast<LLConversationViewSession*>(item_it->second); item->setVisibleIfDetached(visible); } |