Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/chat.py
diff options
context:
space:
mode:
authorMorgan Collett <morgan.collett@gmail.com>2007-06-29 14:04:17 (GMT)
committer Morgan Collett <morgan.collett@gmail.com>2007-06-29 14:04:17 (GMT)
commitd0d35ec6b9e218aa2548d8ed402b606493ae8fe3 (patch)
treeae932d17278748ffd6bab309cb41773fd42f5d52 /chat.py
parent2dd42b28af5f15dbf1e93c446e83accd8b267af0 (diff)
chat.py: remove signal_connect - unused
Diffstat (limited to 'chat.py')
-rw-r--r--chat.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/chat.py b/chat.py
index ff693e1..49dbba2 100644
--- a/chat.py
+++ b/chat.py
@@ -289,15 +289,6 @@ class TextChannel():
self._text_chan.Close()
self._text_chan = None
- def signal_connect(self, signal, callback):
- """Connect the function callback to the signal.
-
- signal -- string, for example 'Received'
- callback -- callback function
- """
- if self._text_chan:
- self._text_chan[CHANNEL_TYPE_TEXT].connect_to_signal(signal, callback)
-
def received_callback(self, callback):
"""Connect the function callback to the signal.