Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/Shell.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-08-09 09:47:17 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-08-09 09:47:17 (GMT)
commite4c4e866a5c99d81f7fa0a0972311a604c6f1af2 (patch)
tree6b05cda526a425764e436c820a68c31924a2cd5b /shell/Shell.py
parent4d67407f6a60631a9cd494c81880167c815ef51a (diff)
Start refactoring to get back buddy chat to work...
Diffstat (limited to 'shell/Shell.py')
-rwxr-xr-xshell/Shell.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/Shell.py b/shell/Shell.py
index ff668f0..2860ed0 100755
--- a/shell/Shell.py
+++ b/shell/Shell.py
@@ -14,6 +14,7 @@ from ConsoleWindow import ConsoleWindow
from Owner import ShellOwner
from PresenceService import PresenceService
from ActivityHost import ActivityHost
+from ChatListener import ChatListener
class ShellDbusService(dbus.service.Object):
def __init__(self, shell, bus_name):
@@ -57,6 +58,9 @@ class Shell:
self._owner = ShellOwner()
self._owner.announce()
+ chat_listener = ChatListener()
+ chat_listener.start()
+
self._home_window = HomeWindow(self)
self._home_window.show()