[gedit] Disconnect from message bus before unregistering
- From: Sebastian Polsterl <sebp src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gedit] Disconnect from message bus before unregistering
- Date: Thu, 18 Aug 2011 16:00:30 +0000 (UTC)
commit 355bd254b0cf510b72ebf688ef9f2ac6acb47973
Author: Sebastian PÃlsterl <sebp k-d-w org>
Date: Sun Aug 14 21:19:39 2011 +0200
Disconnect from message bus before unregistering
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=654043
plugins/snippets/snippets/windowactivatable.py | 11 ++++++++---
1 files changed, 8 insertions(+), 3 deletions(-)
---
diff --git a/plugins/snippets/snippets/windowactivatable.py b/plugins/snippets/snippets/windowactivatable.py
index 856e07d..02f9da3 100644
--- a/plugins/snippets/snippets/windowactivatable.py
+++ b/plugins/snippets/snippets/windowactivatable.py
@@ -42,7 +42,6 @@ class WindowActivatable(GObject.Object, Gedit.WindowActivatable, Signals):
Signals.__init__(self)
self.current_language_accel_group = None
- self.signal_ids = {}
def do_activate(self):
self.insert_menu()
@@ -91,11 +90,17 @@ class WindowActivatable(GObject.Object, Gedit.WindowActivatable, Signals):
bus.register(Activate, '/plugins/snippets', 'activate')
bus.register(Activate, '/plugins/snippets', 'parse-and-activate')
- bus.connect('/plugins/snippets', 'activate', self.on_message_activate, None)
- bus.connect('/plugins/snippets', 'parse-and-activate', self.on_message_parse_and_activate, None)
+ self.signal_ids = set()
+ sid = bus.connect('/plugins/snippets', 'activate', self.on_message_activate, None)
+ self.signal_ids.add(sid)
+ sid = bus.connect('/plugins/snippets', 'parse-and-activate', self.on_message_parse_and_activate, None)
+ self.signal_ids.add(sid)
def unregister_messages(self):
bus = self.window.get_message_bus()
+ for sid in self.signal_ids:
+ bus.disconnect(sid)
+ signal_ids = None
bus.unregister_all('/plugins/snippets')
def on_message_activate(self, bus, message, userdata):
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]