Removed redundant declarations for phone types. Now using values from phonebook_number_type declared in vcard.h. --- plugins/phonebook-tracker.c | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/plugins/phonebook-tracker.c b/plugins/phonebook-tracker.c index 9cd82e7..8300fc7 100644 --- a/plugins/phonebook-tracker.c +++ b/plugins/phonebook-tracker.c @@ -44,8 +44,6 @@ #define TRACKER_DEFAULT_CONTACT_ME "http://www.semanticdesktop.org/ontologies/2007/03/22/nco#default-contact-me" #define CONTACTS_ID_COL 19 -#define PHONE_ID_HOME 0 -#define PHONE_ID_WORK 3 #define CONTACTS_QUERY_ALL \ "SELECT nco:phoneNumber(?h) nco:fullname(?c) " \ @@ -697,8 +695,8 @@ add_entry: add_numbers: /* Adding phone numbers to contact struct */ - add_phone_number(contact, reply[0], PHONE_ID_HOME); - add_phone_number(contact, reply[8], PHONE_ID_WORK); + add_phone_number(contact, reply[0], TEL_TYPE_HOME); + add_phone_number(contact, reply[8], TEL_TYPE_WORK); DBG("contact %p", contact); -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html