blob: 2b0e26ad80c59fd19d4bb6dd862a758dc593a1d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "conversation.h"
CConversation::CConversation(unsigned int oid, SERootObject* root) : Conversation(oid, root)
{
this->GetParticipants(this->participants, CConversation::OTHER_CONSUMERS);
fetch(this->participants);
}
void CConversation::OnParticipantListChange()
{
this->GetParticipants(this->participants, CConversation::OTHER_CONSUMERS);
fetch(this->participants);
}
|