예제 #1
0
파일: jcontact.cpp 프로젝트: rnz/qutim
void JContact::setContactInList(bool inList)
{
    Q_D(JContact);
    if (d->inList == inList)
        return;
    d->inList = inList;
    emit inListChanged(inList);
}
예제 #2
0
파일: vcontact.cpp 프로젝트: dganic/qutim
void VContact::setContactInList(bool inList)
{
	Q_D(VContact);
	if (d->inList != inList) {
		d->inList = inList;
		emit inListChanged(d->inList);
	}
}
예제 #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);
}
예제 #4
0
파일: wcontact.cpp 프로젝트: akahan/qutim
void WContact::setInList( bool inList )
{
	m_inList = inList;

	emit inListChanged( m_inList );
}