Debugger/DebuggerInterfaceRuby.py

changeset 482
4650a72c307a
parent 481
ad71812ba395
child 537
72b32daeb8d6
--- a/Debugger/DebuggerInterfaceRuby.py	Tue Aug 10 13:15:03 2010 +0200
+++ b/Debugger/DebuggerInterfaceRuby.py	Tue Aug 10 14:17:54 2010 +0200
@@ -359,8 +359,7 @@
             return
         
         # do not want any slots called during shutdown
-        self.disconnect(self.qsock, SIGNAL('disconnected()'), 
-            self.debugServer.startClient)
+        self.qsock.disconnected.disconnect(self.debugServer.startClient)
         self.qsock.readyRead[()].disconnect(self.__parseClientLine)
         
         # close down socket, and shut down client as well.
@@ -835,4 +834,4 @@
         if self.qsock is not None:
             self.qsock.write(cmd.encode('utf8'))
         else:
-            self.queue.append(cmd)
\ No newline at end of file
+            self.queue.append(cmd)

eric ide

mercurial