Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/PeopleWindow.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-07-26 10:57:54 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-07-26 10:57:54 (GMT)
commit0947581a113af6eaa3660ae37b2720c4806ab0e8 (patch)
tree5006567bbf0de11ad274a0ff44ca18b244433196 /shell/PeopleWindow.py
parent57cc6a303c6c062c7af5544fc9469f80d92a808f (diff)
A bunch of fixes...
Diffstat (limited to 'shell/PeopleWindow.py')
-rw-r--r--shell/PeopleWindow.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/shell/PeopleWindow.py b/shell/PeopleWindow.py
index 78a31ad..60e76a7 100644
--- a/shell/PeopleWindow.py
+++ b/shell/PeopleWindow.py
@@ -18,9 +18,12 @@ class PeopleWindow(gtk.Window):
hbox.pack_start(presence_view, False)
presence_view.show()
- chat = ActivityChat(activity)
- hbox.pack_start(chat)
- chat.show()
+ self._chat = ActivityChat(activity)
+ hbox.pack_start(self._chat)
+ self._chat.show()
self.add(hbox)
hbox.show()
+
+ def share(self):
+ self._chat.share()