Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ActivityHost.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-08-28 14:53:29 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-08-28 14:53:29 (GMT)
commit7d01cee2efb9d647bf67de65c456e9c4be55c553 (patch)
tree4fb475b0faf862d3bff65f08701ed50f16b5eb88 /shell/ActivityHost.py
parent3f4625f0a1262f4d1255cac1dee05eb3daa3f7a2 (diff)
Activate/deactivate the frame on F5
Diffstat (limited to 'shell/ActivityHost.py')
-rw-r--r--shell/ActivityHost.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/shell/ActivityHost.py b/shell/ActivityHost.py
index 6bf3d6e..710da8f 100644
--- a/shell/ActivityHost.py
+++ b/shell/ActivityHost.py
@@ -5,7 +5,6 @@ from sugar import conf
from sugar.activity import Activity
from sugar.presence import PresenceService
from sugar.canvas.IconColor import IconColor
-from PeopleWindow import PeopleWindow
class ActivityHost:
def __init__(self, shell, window):
@@ -21,7 +20,6 @@ class ActivityHost:
self._id = self._activity.get_id()
self._default_type = self._activity.get_default_type()
self._gdk_window = gtk.gdk.window_foreign_new(self._xid)
- self._people_window = PeopleWindow(shell, self)
registry = conf.get_activity_registry()
info = registry.get_activity(self._default_type)
@@ -50,9 +48,6 @@ class ActivityHost:
def get_default_type(self):
return self._default_type
- def show_people(self):
- self.show_dialog(self._people_window)
-
def present(self):
self._window.activate(gtk.get_current_event_time())