Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tray.py
diff options
context:
space:
mode:
authorflavio <fdanesse@gmail.com>2012-12-08 01:05:13 (GMT)
committer flavio <fdanesse@gmail.com>2012-12-08 01:05:13 (GMT)
commitc1b2956375b625eb588f261a3f90828837009310 (patch)
tree9dcf4beeb2f0c570906aebf862b6c8733b45be71 /tray.py
parentcfd28ed788bf6b9e9ddf9340263f8492c35195f7 (diff)
object to GObject
Diffstat (limited to 'tray.py')
-rw-r--r--tray.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tray.py b/tray.py
index 8124842..fccc78a 100644
--- a/tray.py
+++ b/tray.py
@@ -31,14 +31,14 @@ _NEXT_PAGE = 1
class _TrayViewport(gtk.Viewport):
__gproperties__ = {
'can-scroll' : (bool, None, None, False,
- gobject.PARAM_READABLE),
+ GObject.PARAM_READABLE),
}
def __init__(self, orientation):
self.orientation = orientation
self._can_scroll = False
- gobject.GObject.__init__(self)
+ GObject.GObject.__init__(self)
self.set_shadow_type(gtk.SHADOW_NONE)
@@ -110,7 +110,7 @@ class _TrayViewport(gtk.Viewport):
class _TrayScrollButton(gtk.Button):
def __init__(self, icon_name, scroll_direction):
- gobject.GObject.__init__(self)
+ GObject.GObject.__init__(self)
self._viewport = None
@@ -142,7 +142,7 @@ class _TrayScrollButton(gtk.Button):
class HTray(gtk.VBox):
def __init__(self, **kwargs):
- gobject.GObject.__init__(self, **kwargs)
+ GObject.GObject.__init__(self, **kwargs)
separator = hippo.Canvas()
box = hippo.CanvasBox(