Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaul Gutierrez Segales <rgs@collabora.co.uk>2011-07-24 19:03:09 (GMT)
committer Daniel Drake <dsd@laptop.org>2011-10-02 13:57:39 (GMT)
commitf192dc020a6c3393ef6658b8778905a82adcf4a1 (patch)
tree98a89f43c93a569ef906b21f6f1ac4ce277ce0a9
parent5dc1666ebaad2506b5480a0bc199360e82c22d4a (diff)
HomeBox parent constructor is VBox.__init__
-rw-r--r--src/jarabe/desktop/homebox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jarabe/desktop/homebox.py b/src/jarabe/desktop/homebox.py
index 2ee6ae7..08e4d96 100644
--- a/src/jarabe/desktop/homebox.py
+++ b/src/jarabe/desktop/homebox.py
@@ -43,7 +43,7 @@ class HomeBox(gtk.VBox):
def __init__(self):
logging.debug('STARTUP: Loading the home view')
- gobject.GObject.__init__(self)
+ gtk.VBox.__init__(self)
self._favorites_view = favoritesview.FavoritesView()
self._list_view = ActivitiesList()