Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/shellservice.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-06-29 16:31:35 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-06-29 16:31:35 (GMT)
commit64812c7d67c3f926cb7348bd8fffcf6f4d1f219f (patch)
tree6913ba1a295e00c6cca7cfda24a2001a980c383e /shell/shellservice.py
parent500f5d8093024a9321704212db6b73305a6da843 (diff)
Pass in shell to the service not just model
Diffstat (limited to 'shell/shellservice.py')
-rw-r--r--shell/shellservice.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/shellservice.py b/shell/shellservice.py
index 55a74bd..d44144c 100644
--- a/shell/shellservice.py
+++ b/shell/shellservice.py
@@ -42,8 +42,9 @@ class ShellService(dbus.service.Object):
XXX At the moment the d-bus service methods do not appear to do
anything other than add_bundle
"""
- def __init__(self, shell_model):
- self._shell_model = shell_model
+ def __init__(self, shell):
+ self._shell = shell
+ self._shell_model = shell.get_model()
self._owner = self._shell_model.get_owner()
self._owner.connect('nick-changed', self._owner_nick_changed_cb)