Mercurial > libervia-backend
diff src/bridge/DBus.py @ 274:c1ad04586edf
Bridge: rename connection_error to connectionError for function name consistency
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 25 Jan 2011 15:24:31 +0100 |
parents | 1d2e0dfe7114 |
children | c25371424090 |
line wrap: on
line diff
--- a/src/bridge/DBus.py Tue Jan 25 01:37:02 2011 +0100 +++ b/src/bridge/DBus.py Tue Jan 25 15:24:31 2011 +0100 @@ -64,8 +64,8 @@ @dbus.service.signal(const_INT_PREFIX+const_COMM_SUFFIX, signature='ss') - def connection_error(self, error_type, profile): - debug ("connection_error") + def connectionError(self, error_type, profile): + debug ("connectionError") @dbus.service.signal(const_INT_PREFIX+const_COMM_SUFFIX, signature='ss') @@ -375,8 +375,8 @@ def connected(self, profile): self.dbus_bridge.connected(profile) - def connection_error(self, error_type, profile): - self.dbus_bridge.connection_error(error_type, profile) + def connectionError(self, error_type, profile): + self.dbus_bridge.connectionError(error_type, profile) def contactDeleted(self, entity, profile): self.dbus_bridge.contactDeleted(entity, profile)