[tuxdroid-svn] r5980 - 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-15 11:29:31
|
Author: jerome
Date: 2009-12-15 12:29:17 +0100 (Tue, 15 Dec 2009)
New Revision: 5980
Modified:
software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/plugin-skype.py
Log:
* Throwing the first contact in the list.
Modified: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/plugin-skype.py
===================================================================
--- software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/plugin-skype.py 2009-12-15 11:17:33 UTC (rev 5979)
+++ software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/plugin-skype.py 2009-12-15 11:29:17 UTC (rev 5980)
@@ -156,6 +156,7 @@
#Then getting online contact list.
self.command = 'outgoing'
self.client.notify('outgoing_call')
+
def incomingPluginEvent(self, eventName, eventValues):
@@ -364,7 +365,7 @@
'''
Outgoing call finished event.
'''
- pass
+ self.serv.notify('command>outgoing')
def OnOutgoingFinished(self, contactHandle):
@@ -533,6 +534,8 @@
elif Message == 'outgoing_call':
#Outgoing call requested, so getting online list and sending outgoing command.
self.onlineList = self.synchronious.getOnlineList()
+ #And throwing the first online contact in list.
+ self.nextContact()
#Outgoing
elif Message == 'call_contact':
|