summaryrefslogtreecommitdiff
path: root/demos/gtk-demo/demos/pixbuf.py
diff options
context:
space:
mode:
Diffstat (limited to 'demos/gtk-demo/demos/pixbuf.py')
-rw-r--r--demos/gtk-demo/demos/pixbuf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/gtk-demo/demos/pixbuf.py b/demos/gtk-demo/demos/pixbuf.py
index a2250ba7..778874bc 100644
--- a/demos/gtk-demo/demos/pixbuf.py
+++ b/demos/gtk-demo/demos/pixbuf.py
@@ -81,7 +81,7 @@ class PixbufApp:
self.da = Gtk.DrawingArea()
self.da.connect('draw', self.draw_cb)
self.window.add(self.da)
- self.timeout_id = GObject.timeout_add(self.FRAME_DELAY, self.timeout_cb)
+ self.timeout_id = GLib.timeout_add(self.FRAME_DELAY, self.timeout_cb)
self.window.show_all()
def load_pixbufs(self):
@@ -171,7 +171,7 @@ class PixbufApp:
return True
def cleanup_cb(self, widget):
- GObject.source_remove(self.timeout_id)
+ GLib.source_remove(self.timeout_id)
Gtk.main_quit()