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