summaryrefslogtreecommitdiff
path: root/indra/newview/llparticipantlist.cpp
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2012-09-20 20:48:20 -0700
committerMerov Linden <merov@lindenlab.com>2012-09-20 20:48:20 -0700
commitfc6bbee3f4ba1abba2956ee92f7ac7ba01d0f59b (patch)
tree542b22f9dfcf0b24c6af996b2b7015e3a30c5280 /indra/newview/llparticipantlist.cpp
parent1107803a5c6da07cd5171f06afc0490f3eca7bf7 (diff)
CHUI-340 : WIP : Implement time update on all IM typing cases
Diffstat (limited to 'indra/newview/llparticipantlist.cpp')
-rw-r--r--indra/newview/llparticipantlist.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/indra/newview/llparticipantlist.cpp b/indra/newview/llparticipantlist.cpp
index 9f470a735e..6283c8f296 100644
--- a/indra/newview/llparticipantlist.cpp
+++ b/indra/newview/llparticipantlist.cpp
@@ -592,12 +592,7 @@ bool LLParticipantList::onSpeakerUpdateEvent(LLPointer<LLOldEvents::LLEvent> eve
if ( evt_data.has("id") )
{
LLUUID participant_id = evt_data["id"];
- LLConversationItemParticipant* participant = findParticipant(participant_id);
- if (participant)
- {
- participant->setTimeNow();
- }
- llinfos << "Merov debug : onSpeakerUpdateEvent, session = " << mUUID << ", uuid = " << participant_id << ", date = " << LLFrameTimer::getElapsedSeconds() << llendl;
+ setParticipantTimeNow(participant_id);
}
return true;
}