[folks/648811-dummy-backend-rebase1: 9/10] dummy: Connect to one notify signal instead of millions
- From: Philip Withnall <pwithnall src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [folks/648811-dummy-backend-rebase1: 9/10] dummy: Connect to one notify signal instead of millions
- Date: Wed, 6 Nov 2013 10:11:38 +0000 (UTC)
commit fc55dcf474a1dda0aef97ce5440d7681d30b11ae
Author: Philip Withnall <philip tecnocode co uk>
Date: Fri Nov 1 16:41:12 2013 +0000
dummy: Connect to one notify signal instead of millions
tests/dummy/add-persona.vala | 26 ++------------------------
1 files changed, 2 insertions(+), 24 deletions(-)
---
diff --git a/tests/dummy/add-persona.vala b/tests/dummy/add-persona.vala
index f1c374d..7e20139 100644
--- a/tests/dummy/add-persona.vala
+++ b/tests/dummy/add-persona.vala
@@ -294,18 +294,7 @@ public class AddPersonaTests : DummyTest.TestCase
/* handle replacement */
if (this._individual_received != null)
{
- i.notify["full-name"].disconnect (this._notify_cb);
- i.notify["nickname"].disconnect (this._notify_cb);
- i.notify["email-addresses"].disconnect (this._notify_cb);
- i.notify["avatar"].disconnect (this._notify_cb);
- i.notify["im-addresses"].disconnect (this._notify_cb);
- i.notify["phone-numbers"].disconnect (this._notify_cb);
- i.notify["postal-addresses"].disconnect (this._notify_cb);
- i.notify["structured-name"].disconnect (this._notify_cb);
- i.notify["notes"].disconnect (this._notify_cb);
- i.notify["birthday"].disconnect (this._notify_cb);
- i.notify["roles"].disconnect (this._notify_cb);
- i.notify["is-favourite"].disconnect (this._notify_cb);
+ i.notify.disconnect (this._notify_cb);
this._properties_found.remove_all ();
}
@@ -313,18 +302,7 @@ public class AddPersonaTests : DummyTest.TestCase
this._individual_received = i;
retval++;
- i.notify["full-name"].connect (this._notify_cb);
- i.notify["nickname"].connect (this._notify_cb);
- i.notify["email-addresses"].connect (this._notify_cb);
- i.notify["avatar"].connect (this._notify_cb);
- i.notify["im-addresses"].connect (this._notify_cb);
- i.notify["phone-numbers"].connect (this._notify_cb);
- i.notify["postal-addresses"].connect (this._notify_cb);
- i.notify["structured-name"].connect (this._notify_cb);
- i.notify["notes"].connect (this._notify_cb);
- i.notify["birthday"].connect (this._notify_cb);
- i.notify["roles"].connect (this._notify_cb);
- i.notify["is-favourite"].connect (this._notify_cb);
+ i.notify.connect (this._notify_cb);
this._check_properties.begin (i);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]