[gnome-contacts] Track is_primary on Contact
- From: Alexander Larsson <alexl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-contacts] Track is_primary on Contact
- Date: Mon, 16 Jan 2012 16:02:17 +0000 (UTC)
commit c64975503b471e425890a63c39ef5c6ac36e9d6f
Author: Alexander Larsson <alexl redhat com>
Date: Mon Jan 16 15:03:41 2012 +0100
Track is_primary on Contact
src/contacts-contact.vala | 13 ++++++++++++-
1 files changed, 12 insertions(+), 1 deletions(-)
---
diff --git a/src/contacts-contact.vala b/src/contacts-contact.vala
index 71973e8..2d82d35 100644
--- a/src/contacts-contact.vala
+++ b/src/contacts-contact.vala
@@ -107,6 +107,7 @@ public class Contacts.ContactPresence : Grid {
public class Contacts.Contact : GLib.Object {
public Store store;
+ public bool is_primary;
public PresenceType presence_type;
public string presence_message;
public bool is_phone;
@@ -382,8 +383,11 @@ public class Contacts.Contact : GLib.Object {
individual.set_data ("contact", this);
this.refs = new ContactDataRef[0];
- foreach (var p in individual.personas)
+ foreach (var p in individual.personas) {
connect_persona (p);
+ if (p.store.is_primary_store)
+ this.is_primary = true;
+ }
individual.personas_changed.connect ( (added, removed) => {
foreach (var p in added)
@@ -782,6 +786,13 @@ public class Contacts.Contact : GLib.Object {
changed_id = 0;
var changed_personas = this.changed_personas;
this.changed_personas = false;
+ if (changed_personas) {
+ this.is_primary = false;
+ foreach (var p in individual.personas) {
+ if (p.store.is_primary_store)
+ this.is_primary = true;
+ }
+ }
update ();
changed ();
if (changed_personas)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]