summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <philip.withnall@collabora.co.uk>2011-04-22 22:01:38 +0100
committerPhilip Withnall <philip@tecnocode.co.uk>2011-04-26 21:39:34 +0100
commit7fede8525f682559fe23280ad107082d3793b82d (patch)
treece91f4780821f753758edc3b48d43d6f98477ca6
parentbc22db53346c24ccb3dc6d53d00ccda125f6e6cf (diff)
Add a missing signal disconnection to Kf.Backend
Helps: bgo#645186
-rw-r--r--backends/key-file/kf-backend.vala1
1 files changed, 1 insertions, 0 deletions
diff --git a/backends/key-file/kf-backend.vala b/backends/key-file/kf-backend.vala
index c5a981c..beefe73 100644
--- a/backends/key-file/kf-backend.vala
+++ b/backends/key-file/kf-backend.vala
@@ -134,6 +134,7 @@ public class Folks.Backends.Kf.Backend : Folks.Backend
private void _store_removed_cb (Folks.PersonaStore store)
{
+ store.removed.disconnect (this._store_removed_cb);
this.persona_store_removed (store);
this._persona_stores.unset (store.id);
this.notify_property ("persona-stores");