summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2012-11-16 11:14:12 -0800
committerMerov Linden <merov@lindenlab.com>2012-11-16 11:14:12 -0800
commited3f43aec48097c56d617a8948d2577624762a88 (patch)
tree0ff50aff6758c5989fc4ba701d6dc2a470e63fc1 /indra
parentec5d1e48c4071500400b885e5893373bab0e3d99 (diff)
CHUI-479 : WIP : Tracing of LLIMModel::processSessionInitializedReply (to be deleted).
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llfloaterimcontainer.cpp25
-rw-r--r--indra/newview/llfloaterimsessiontab.cpp1
2 files changed, 24 insertions, 2 deletions
diff --git a/indra/newview/llfloaterimcontainer.cpp b/indra/newview/llfloaterimcontainer.cpp
index 2707e3dcbb..af090338d7 100644
--- a/indra/newview/llfloaterimcontainer.cpp
+++ b/indra/newview/llfloaterimcontainer.cpp
@@ -98,6 +98,7 @@ LLFloaterIMContainer::~LLFloaterIMContainer()
void LLFloaterIMContainer::sessionAdded(const LLUUID& session_id, const std::string& name, const LLUUID& other_participant_id)
{
+ llinfos << "Merov debug : sessionAdded, uuid = " << session_id << ", name = " << name << llendl;
addConversationListItem(session_id);
LLFloaterIMSessionTab::addToHost(session_id);
}
@@ -109,14 +110,33 @@ void LLFloaterIMContainer::sessionActivated(const LLUUID& session_id, const std:
void LLFloaterIMContainer::sessionVoiceOrIMStarted(const LLUUID& session_id)
{
+ llinfos << "Merov debug : sessionVoiceOrIMStarted, uuid = " << session_id << llendl;
addConversationListItem(session_id);
LLFloaterIMSessionTab::addToHost(session_id);
}
void LLFloaterIMContainer::sessionIDUpdated(const LLUUID& old_session_id, const LLUUID& new_session_id)
{
- // *TODO: We should do this *without* delete and recreate
- addConversationListItem(new_session_id, removeConversationListItem(old_session_id));
+ llinfos << "Merov debug : sessionIDUpdated, old_session_id = " << old_session_id << ", new_session_id = " << new_session_id << llendl;
+ // Retrieve the session LLFloaterIMSessionTab
+ // just close it: that should erase the mSession, close the tab and remove the list item
+ // *TODO : take the mSessions element (pointing to the tab) out of the list
+ //bool change_focus = removeConversationListItem(old_session_id);
+ // *TODO : detach the old tab from the host
+ // *TODO : delete the tab (that's one thing that's reentrant)
+ LLFloater* floaterp = get_ptr_in_map(mSessions, old_session_id);
+ if (floaterp)
+ {
+ llinfos << "Merov debug : closeFloater, start" << llendl;
+ floaterp->closeFloater();
+ llinfos << "Merov debug : closeFloater, end" << llendl;
+ }
+ bool change_focus = false;
+ llinfos << "Merov debug : addConversationListItem" << llendl;
+ addConversationListItem(new_session_id, change_focus);
+ llinfos << "Merov debug : addToHost" << llendl;
+ LLFloaterIMSessionTab::addToHost(new_session_id);
+ llinfos << "Merov debug : end sessionIDUpdated" << llendl;
}
void LLFloaterIMContainer::sessionRemoved(const LLUUID& session_id)
@@ -1300,6 +1320,7 @@ LLConversationItem* LLFloaterIMContainer::addConversationListItem(const LLUUID&
bool LLFloaterIMContainer::removeConversationListItem(const LLUUID& uuid, bool change_focus)
{
+ llinfos << "Merov debug : removeConversationListItem, uuid = " << uuid << llendl;
// Delete the widget and the associated conversation item
// Note : since the mConversationsItems is also the listener to the widget, deleting
// the widget will also delete its listener
diff --git a/indra/newview/llfloaterimsessiontab.cpp b/indra/newview/llfloaterimsessiontab.cpp
index 6b13f5f381..6fbc713590 100644
--- a/indra/newview/llfloaterimsessiontab.cpp
+++ b/indra/newview/llfloaterimsessiontab.cpp
@@ -721,6 +721,7 @@ void LLFloaterIMSessionTab::onClose(bool app_quitting)
LLFloaterIMContainer* im_box = LLFloaterIMContainer::findInstance();
if (im_box)
{
+ llinfos << "Merov debug : LLFloaterIMSessionTab::onClose, mKey = " << mKey << llendl;
im_box->removeConversationListItem(mKey);
}
}