Esempio n. 1
0
void JContact::setContactInList(bool inList)
{
    Q_D(JContact);
    if (d->inList == inList)
        return;
    d->inList = inList;
    emit inListChanged(inList);
}
Esempio n. 2
0
void VContact::setContactInList(bool inList)
{
	Q_D(VContact);
	if (d->inList != inList) {
		d->inList = inList;
		emit inListChanged(d->inList);
	}
}
Esempio n. 3
0
void MrimContact::setContactInList(bool inList)
{
	if (p->inList == inList)
		return;
	QStringList groups = tags();
	p->inList = inList;
	emit inListChanged(inList);
	emit tagsChanged(tags(), groups);
}
Esempio n. 4
0
void WContact::setInList( bool inList )
{
	m_inList = inList;

	emit inListChanged( m_inList );
}