Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/chat
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-07-09 15:37:54 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-07-09 15:37:54 (GMT)
commit1cc14e406a62a015067446976d149a1f60de5197 (patch)
tree8f0f66f65da26b55c93e0bd7503f9f315d76cc87 /sugar/chat
parentd4cb9a27149126de64fb003aafb8673633b885b0 (diff)
More work on the window management refactor
Diffstat (limited to 'sugar/chat')
-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()