Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/shell.py
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2006-06-22 18:36:50 (GMT)
committer Dan Williams <dcbw@redhat.com>2006-06-22 18:36:50 (GMT)
commit735d8bc8b4b84ed12009b2a16af1cd1c38b7e37e (patch)
tree3dc2e0877e5b8c3868b89287b5e269cf5780bb84 /shell/shell.py
parent2840af85ce3b7d998a356f5606ce0d6637b4092e (diff)
rename group_chat -> activity_chat for clarification
Diffstat (limited to 'shell/shell.py')
-rwxr-xr-xshell/shell.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/shell.py b/shell/shell.py
index a86e6dc..87db70f 100755
--- a/shell/shell.py
+++ b/shell/shell.py
@@ -83,10 +83,10 @@ class ActivityHost(dbus.service.Object):
notebook.set_current_page(index)
def _create_chat(self):
- self._group_chat = ActivityChat(self)
+ self._activity_chat = ActivityChat(self)
def get_chat(self):
- return self._group_chat
+ return self._activity_chat
def get_default_type(self):
return self._default_type
@@ -98,7 +98,7 @@ class ActivityHost(dbus.service.Object):
pass
def publish(self):
- self._group_chat.publish()
+ self._activity_chat.publish()
self.peer_service.publish()
def tab_close_button_clicked(self, button):