summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Whiting <jpwhiting@kde.org>2012-09-11 13:43:40 -0600
committerJeremy Whiting <jpwhiting@kde.org>2012-09-11 13:43:40 -0600
commitf4e94254af72b03b37d53e27918e792915caa631 (patch)
tree252fe8d1730b9615ce90ad3adbfc09e4567add75
parent9acedd528045e7e16dd3bfe6fdc9d9cc1f0e4727 (diff)
telepathy: Fix individual-properties unit test, always emit notify forFOLKS_0_7_4
full-name and urls.
-rw-r--r--backends/telepathy/lib/tpf-persona.vala12
1 files changed, 3 insertions, 9 deletions
diff --git a/backends/telepathy/lib/tpf-persona.vala b/backends/telepathy/lib/tpf-persona.vala
index eedbfb74..a3e64493 100644
--- a/backends/telepathy/lib/tpf-persona.vala
+++ b/backends/telepathy/lib/tpf-persona.vala
@@ -692,7 +692,7 @@ public class Tpf.Persona : Folks.Persona,
{
get
{
- this._contact_notify_contact_info (true);
+ this._contact_notify_contact_info (true, false);
return this._urls_ro;
}
set { this.change_urls.begin (value); }
@@ -1076,10 +1076,7 @@ public class Tpf.Persona : Folks.Persona,
if (new_full_name != this._full_name)
{
this._full_name = new_full_name;
- if (emit_notification)
- {
- this.notify_property ("full-name");
- }
+ this.notify_property ("full-name");
changed = true;
}
@@ -1099,10 +1096,7 @@ public class Tpf.Persona : Folks.Persona,
{
this._urls = new_urls;
this._urls_ro = new_urls.read_only_view;
- if (emit_notification)
- {
- this.notify_property ("urls");
- }
+ this.notify_property ("urls");
changed = true;
}