diff options
author | Philip Withnall <philip@tecnocode.co.uk> | 2013-08-04 09:58:46 +0200 |
---|---|---|
committer | Philip Withnall <philip@tecnocode.co.uk> | 2013-08-04 09:58:46 +0200 |
commit | d22b23e88d4b80f52eab4ea6e19e9f0aeb84df6f (patch) | |
tree | 948ae2dd54c3f87082b7ac54a75a2e4a5f093aec /src/contacts-contact-editor.vala | |
parent | 8f135689efb1bd24839f24f6e6aff02ad68e196b (diff) | |
download | gnome-contacts-d22b23e88d4b80f52eab4ea6e19e9f0aeb84df6f.tar.gz |
Fix use of deprecated libfolks API
Diffstat (limited to 'src/contacts-contact-editor.vala')
-rw-r--r-- | src/contacts-contact-editor.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/contacts-contact-editor.vala b/src/contacts-contact-editor.vala index e68f178..fcac6e4 100644 --- a/src/contacts-contact-editor.vala +++ b/src/contacts-contact-editor.vala @@ -182,7 +182,7 @@ public class Contacts.ContactEditor : Grid { addr_editor.details.value.postal_code, addr_editor.details.value.country, addr_editor.details.value.address_format, - addr_editor.details.value.uid); + addr_editor.details.id); for (int i = 0; i < addr_editor.entries.length; i++) new_value.set (Contact.postal_element_props[i], addr_editor.entries[i].get_text ()); |