Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/chat/ChatWindow.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar/chat/ChatWindow.py')
-rw-r--r--sugar/chat/ChatWindow.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/sugar/chat/ChatWindow.py b/sugar/chat/ChatWindow.py
deleted file mode 100644
index b06175d..0000000
--- a/sugar/chat/ChatWindow.py
+++ /dev/null
@@ -1,18 +0,0 @@
-import pygtk
-pygtk.require('2.0')
-import gtk
-
-from sugar.chat.Chat import Chat
-
-class ChatWindow(gtk.Window):
- def __init__(self):
- gtk.Window.__init__(self)
- self._chat = None
-
- def set_chat(self, chat):
- if self._chat != None:
- self.remove(self._chat)
-
- self._chat = chat
- self.add(self._chat)
- self._chat.show()