Ejemplo n.º 1
0
	void RoomCLEntry::HandleNewParticipants (const QList<ICLEntry*>& parts)
	{
		QObjectList objs;
		Q_FOREACH (ICLEntry *e, parts)
			objs << e->GetQObject ();
		emit gotNewParticipants (objs);
	}
Ejemplo n.º 2
0
	void RoomCLEntry::HandleNewParticipants (const QList<ICLEntry*>& parts)
	{
		emit gotNewParticipants (Util::Map (parts, &ICLEntry::GetQObject));
	}