Index: src/XMPPContactManager.m ================================================================== --- src/XMPPContactManager.m +++ src/XMPPContactManager.m @@ -116,30 +116,30 @@ if ([[rosterItem subscription] isEqual: @"remove"]) { [_contacts removeObjectForKey: bareJID]; if (contact != nil) [_delegates broadcastSelector: @selector(contactManager: - didRemoveContact:) - withObject: self - withObject: contact]; + didRemoveContact:) + withObject: self + withObject: contact]; return; } if (contact == nil) { contact = [[XMPPContact new] autorelease]; [contact XMPP_setRosterItem: rosterItem]; [_contacts setObject: contact forKey: bareJID]; [_delegates broadcastSelector: @selector(contactManager: - didAddContact:) - withObject: self - withObject: contact]; + didAddContact:) + withObject: self + withObject: contact]; } else { [_delegates broadcastSelector: @selector(contact: - willUpdateWithRosterItem:) - withObject: contact - withObject: rosterItem]; + willUpdateWithRosterItem:) + withObject: contact + withObject: rosterItem]; [contact XMPP_setRosterItem: rosterItem]; } } - (void)connection: (XMPPConnection*)connection @@ -154,17 +154,17 @@ // We only care for available and unavailable here, not subscriptions if ([[presence type] isEqual: @"available"]) { [contact XMPP_setPresence: presence resource: [JID resource]]; [_delegates broadcastSelector: @selector(contact: - didSendPresence:) - withObject: contact - withObject: presence]; + didSendPresence:) + withObject: contact + withObject: presence]; } else if ([[presence type] isEqual: @"unavailable"]) { [contact XMPP_removePresenceForResource: [JID resource]]; [_delegates broadcastSelector: @selector(contact: - didSendPresence:) + didSendPresence:) withObject: contact withObject: presence]; } }