
Originally Posted by
gnuton
You can use a QContact has group then create relations between the group contact and other ones.
Am I missing something obvious? The code bellow makes me believe that the backend for maemo5 does not support Groups or Relationships:
Code:
QContactManager manager;
qDebug() << "Groups: " << manager.hasFeature(QContactManager::Groups);
qDebug() << "Relationships: " << manager.hasFeature(QContactManager::Relationships);
foreach (QString type, manager.supportedContactTypes()) qDebug() << type;