Mercurial > libervia-backend
changeset 136:d6c0fe7489af
frontend DBus bridge: added profile management for launchAction method
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 16 Jul 2010 20:17:01 +0800 |
parents | 7452ac3818e7 |
children | 227394eb080c |
files | frontends/sat_bridge_frontend/DBus.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/frontends/sat_bridge_frontend/DBus.py Fri Jul 16 20:16:13 2010 +0800 +++ b/frontends/sat_bridge_frontend/DBus.py Fri Jul 16 20:17:01 2010 +0800 @@ -109,8 +109,8 @@ def delContact(self, jid, profile_key='@DEFAULT@'): return self.db_comm_iface.delContact(jid, profile_key) - def launchAction(self, type, data): - return self.db_req_iface.launchAction(type, data) + def launchAction(self, type, data, profile_key='@DEFAULT@'): + return self.db_req_iface.launchAction(type, data, profile_key) def confirmationAnswer(self, id, accepted, data): return self.db_req_iface.confirmationAnswer(id, accepted, data)