Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/sugar3/graphics/panel.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/sugar3/graphics/panel.py')
-rw-r--r--src/sugar3/graphics/panel.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sugar3/graphics/panel.py b/src/sugar3/graphics/panel.py
index 441e7a9..0e3d76a 100644
--- a/src/sugar3/graphics/panel.py
+++ b/src/sugar3/graphics/panel.py
@@ -19,12 +19,12 @@
STABLE.
"""
-import gtk
+from gi.repository import Gtk
-class Panel(gtk.VBox):
+class Panel(Gtk.VBox):
__gtype_name__ = 'SugarPanel'
def __init__(self):
- gtk.VBox.__init__(self)
+ GObject.GObject.__init__(self)