summaryrefslogtreecommitdiff
path: root/src/contacts-contact-pane.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/contacts-contact-pane.vala')
-rw-r--r--src/contacts-contact-pane.vala9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/contacts-contact-pane.vala b/src/contacts-contact-pane.vala
index 2a16e22..486aa30 100644
--- a/src/contacts-contact-pane.vala
+++ b/src/contacts-contact-pane.vala
@@ -84,8 +84,9 @@ public class Contacts.ContactPane : Adw.Bin {
return;
}
- if (this.contact == null || this.contact.individual != individual)
- this.contact = new Contact.for_individual (individual, this.store);
+ if (this.contact == null || this.contact.individual != individual) {
+ this.contact = new Contact.for_individual (individual);
+ }
show_contact_sheet (this.contact);
}
@@ -175,7 +176,7 @@ public class Contacts.ContactPane : Adw.Bin {
}
try {
- yield contact.apply_changes ();
+ yield contact.apply_changes (this.store.aggregator.primary_store);
} catch (Error err) {
warning ("Couldn't save changes: %s", err.message);
// XXX do something better here
@@ -195,7 +196,7 @@ public class Contacts.ContactPane : Adw.Bin {
}
public void new_contact () {
- this.contact = new Contact.for_new (this.store);
+ this.contact = new Contact.empty ();
if (this.on_edit_mode)
return;