[tuxdroid-svn] r5928 - software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/execut
Status: Beta
Brought to you by:
ks156
|
From: jerome <c2m...@c2...> - 2009-12-03 12:35:44
|
Author: jerome
Date: 2009-12-03 13:35:24 +0100 (Thu, 03 Dec 2009)
New Revision: 5928
Modified:
software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/connector.py
Log:
* Forget to add a parameter.
Modified: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/connector.py
===================================================================
--- software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/connector.py 2009-12-03 12:33:34 UTC (rev 5927)
+++ software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/connector.py 2009-12-03 12:35:24 UTC (rev 5928)
@@ -164,7 +164,7 @@
- def __stop__(self):
+ def __stop__(self, KillClient=False):
'''
Stop all connection and close Skyp application if needed.
'''
@@ -192,7 +192,7 @@
'''
Stop connection.
'''
- self.__stop__()
+ self.__stop__(KillClient)
def startClient(self, OnStarted=None):
|