[folks] Use the correct signal name for postal addresses



commit 06cbd717e49cc019cb03f6e0b65828b2721b5645
Author: Raul Gutierrez Segales <raul gutierrez segales collabora co uk>
Date:   Sat Mar 5 15:04:41 2011 +0000

    Use the correct signal name for postal addresses

 NEWS                  |    1 +
 folks/individual.vala |    4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/NEWS b/NEWS
index bb07dba..20ef1e6 100644
--- a/NEWS
+++ b/NEWS
@@ -14,6 +14,7 @@ Bugs fixed:
 * Bug 642500 â?? Folks needs API for specifying a contact's birthday
 * Bug 642501 â?? Folks needs API for attaching notes to a Contact
 * Bug 641210 â?? Add interface for postal addresses
+* Bug 643956 â?? Use the correct signal name for postal addresses
 
 API changes:
 * Add RoleOwner interface
diff --git a/folks/individual.vala b/folks/individual.vala
index 0390046..5e86351 100644
--- a/folks/individual.vala
+++ b/folks/individual.vala
@@ -932,7 +932,7 @@ public class Folks.Individual : Object,
       persona.notify["roles"].connect (this._notify_roles_cb);
       persona.notify["birthday"].connect (this._notify_birthday_cb);
       persona.notify["notes"].connect (this._notify_notes_cb);
-      persona.notify["postal_addresses"].connect
+      persona.notify["postal-addresses"].connect
           (this._notify_postal_addresses_cb);
 
       if (persona is Groupable)
@@ -1026,7 +1026,7 @@ public class Folks.Individual : Object,
       persona.notify["roles"].disconnect (this._notify_roles_cb);
       persona.notify["birthday"].disconnect (this._notify_birthday_cb);
       persona.notify["notes"].disconnect (this._notify_notes_cb);
-      persona.notify["postal_addresses"].disconnect
+      persona.notify["postal-addresses"].disconnect
           (this._notify_postal_addresses_cb);
 
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]