# HG changeset patch # User Goffi # Date 1279282621 -28800 # Node ID d6c0fe7489afea9b985a900f6ffccc7d2eeca505 # Parent 7452ac3818e78237ca1a1ad65c8d107be27037c0 frontend DBus bridge: added profile management for launchAction method diff -r 7452ac3818e7 -r d6c0fe7489af frontends/sat_bridge_frontend/DBus.py --- 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)