Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/Shell.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-08-19 09:12:25 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-08-19 09:12:25 (GMT)
commit0d4acb6e78ecd52b31b0b861bcf4a77b22936e59 (patch)
tree527e35f29e54584400106db64cb8e2f2de6d7e8f /shell/Shell.py
parentde65daf5480b673df26c5144925c8041a766cc87 (diff)
Start implementing friends/mesh
Diffstat (limited to 'shell/Shell.py')
-rwxr-xr-xshell/Shell.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/Shell.py b/shell/Shell.py
index c8ebe06..5876f70 100755
--- a/shell/Shell.py
+++ b/shell/Shell.py
@@ -9,6 +9,7 @@ import wnck
from ActivityRegistry import ActivityRegistry
from home.HomeWindow import HomeWindow
+from home.HomeModel import HomeModel
from sugar import env
from Owner import ShellOwner
from sugar.presence.PresenceService import PresenceService
@@ -77,7 +78,8 @@ class Shell(gobject.GObject):
self._chat_controller = ChatController(self)
self._chat_controller.listen()
- self._home_window = HomeWindow(self)
+ home_model = HomeModel(self._registry)
+ self._home_window = HomeWindow(self, home_model)
self._home_window.show()
self._screen.connect('window-opened', self.__window_opened_cb)