Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/home/FriendView.py
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-07-01 10:55:10 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-07-01 10:55:10 (GMT)
commit4aee850af7b3de3dab24aa6cf72a855162e4fddd (patch)
tree8363ae249a4ddebe8d1ddd3e0362d496705139db /shell/view/home/FriendView.py
parentaa5d6af260ce93495fd7bb9d19a094106c331e98 (diff)
Replace Menu for Palette.
Diffstat (limited to 'shell/view/home/FriendView.py')
-rw-r--r--shell/view/home/FriendView.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/view/home/FriendView.py b/shell/view/home/FriendView.py
index 6530957..a899a63 100644
--- a/shell/view/home/FriendView.py
+++ b/shell/view/home/FriendView.py
@@ -25,13 +25,13 @@ from model import bundleregistry
from view.BuddyIcon import BuddyIcon
class FriendView(hippo.CanvasBox):
- def __init__(self, shell, menu_shell, buddy, **kwargs):
+ def __init__(self, shell, buddy, **kwargs):
hippo.CanvasBox.__init__(self, **kwargs)
self._pservice = presenceservice.get_instance()
self._buddy = buddy
- self._buddy_icon = BuddyIcon(shell, menu_shell, buddy)
+ self._buddy_icon = BuddyIcon(shell, buddy)
self._buddy_icon.props.scale = units.LARGE_ICON_SCALE
self.append(self._buddy_icon)