From bc9d7b82208767b92cb975e4a2c3dc43983fb6f9 Mon Sep 17 00:00:00 2001 From: Matt Porter Date: Tue, 26 Jun 2018 11:51:51 -0400 Subject: pbap: sort and trim contact list Sort the contacts list alphabetically and trim out bogus entries. Bug-AGL: SPEC-1436 Change-Id: I71e4311bb7638750732ba27fbeaa76c063113c46 Signed-off-by: Matt Porter --- pbap/pbap.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'pbap/pbap.cpp') diff --git a/pbap/pbap.cpp b/pbap/pbap.cpp index ad3eec7..20024a7 100644 --- a/pbap/pbap.cpp +++ b/pbap/pbap.cpp @@ -137,6 +137,14 @@ void Pbap::search(QString number) tmsg->deleteLater(); } +bool compareContactPtr(QObject *a, QObject *b) +{ + Contact *contactA = qobject_cast(a); + Contact *contactB = qobject_cast(b); + + return (*contactA < *contactB); +} + void Pbap::updateContacts(QString vcards) { QString name, number, type; @@ -147,6 +155,8 @@ void Pbap::updateContacts(QString vcards) vCardProperty name_prop = vcard.property(VC_FORMATTED_NAME); QStringList values = name_prop.values(); name = values.at(vCardProperty::DefaultValue); + if (name.isEmpty() || name.startsWith('#')) + continue; /* * libvcard has no member function to return a list of named * properties, so we iterate over all properties and parse @@ -166,6 +176,9 @@ void Pbap::updateContacts(QString vcards) } m_contacts.append(new Contact(name, numbers)); } + + std::sort(m_contacts.begin(), m_contacts.end(), compareContactPtr); + refreshCalls(100); } -- cgit 1.2.3-korg