Make method names more consistent with ObjFW.

This commit is contained in:
Jonathan Schleifer 2012-12-13 22:49:09 +01:00
parent 89b1f86a4d
commit 00a064a4a5
7 changed files with 66 additions and 54 deletions

View file

@ -97,10 +97,10 @@
[iq addChild: query];
[connection sendIQ: iq
withCallbackObject: self
selector: @selector(XMPP_handleInitialRosterForConnection:
withIQ:)];
[connection sendIQ: iq
callbackTarget: self
selector: @selector(XMPP_handleInitialRosterForConnection:
IQ:)];
}
- (BOOL)connection: (XMPPConnection*)connection_
@ -306,7 +306,7 @@
}
- (void)XMPP_handleInitialRosterForConnection: (XMPPConnection*)connection_
withIQ: (XMPPIQ*)iq
IQ: (XMPPIQ*)iq
{
OFXMLElement *rosterElement;
OFEnumerator *enumerator;