Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-09-20 10:27:38 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-09-20 10:27:38 (GMT)
commit09db49cc18d45d1dc3d3eaaf8132b45492554476 (patch)
treed9bfc2a1377ee90863b46fd5dfe967cf152deb7b /shell/view
parentd0f23744f05d1c91c50ec41938c25919179feb9a (diff)
s/BuddyInfo/BuddyModel
Diffstat (limited to 'shell/view')
-rw-r--r--shell/view/frame/RightPanel.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/view/frame/RightPanel.py b/shell/view/frame/RightPanel.py
index 144c50e..d74d6ab 100644
--- a/shell/view/frame/RightPanel.py
+++ b/shell/view/frame/RightPanel.py
@@ -5,7 +5,7 @@ from sugar.canvas.IconColor import IconColor
from sugar.canvas.CanvasBox import CanvasBox
from sugar.presence import PresenceService
from view.BuddyIcon import BuddyIcon
-from model.BuddyInfo import BuddyInfo
+from model.BuddyModel import BuddyModel
from view.frame.MenuStrategy import MenuStrategy
class RightPanel(CanvasBox):
@@ -25,7 +25,7 @@ class RightPanel(CanvasBox):
shell.connect('activity-changed', self.__activity_changed_cb)
def add(self, buddy):
- icon = BuddyIcon(self._shell, self._menu_shell, BuddyInfo(buddy))
+ icon = BuddyIcon(self._shell, self._menu_shell, BuddyModel(buddy))
icon.set_menu_strategy(MenuStrategy())
self.set_constraints(icon, 3, 3)
self.add_child(icon)