Replacing set_data/get_data with a python attribute

set_data/get_data not available anymore is not available anymore [1]. The
recommended approach is using a python attribute, which we do.

Changing to use the attribute in the activity class slipped by mistake
into 6330204e91.

[1] https://bugzilla.gnome.org/show_bug.cgi?id=641944

Signed-off-by: Simon Schampijer <simon@laptop.org>
Tested-by: Manuel Quiñones <manuq@laptop.org>
This commit is contained in:
Simon Schampijer
2012-06-06 12:57:00 +02:00
parent e97e5cac6d
commit af320f91f8
4 changed files with 8 additions and 9 deletions
+2 -2
View File
@@ -80,7 +80,7 @@ class _PaletteMenuWidget(Gtk.Menu):
Gtk.Menu.__init__(self)
accel_group = Gtk.AccelGroup()
self.set_data('sugar-accel-group', accel_group)
self.sugar_accel_group = accel_group
self.get_toplevel().add_accel_group(accel_group)
self._popup_position = (0, 0)
@@ -248,7 +248,7 @@ class _PaletteWindowWidget(Gtk.Window):
self.set_position(Gtk.WindowPosition.NONE)
accel_group = Gtk.AccelGroup()
self.set_data('sugar-accel-group', accel_group)
self.sugar_accel_group = accel_group
self.add_accel_group(accel_group)
self._old_alloc = None