Coding style.

This commit is contained in:
Jonathan Schleifer 2013-07-01 22:32:09 +02:00
parent fac12cfde9
commit ed5604447a
10 changed files with 60 additions and 60 deletions

View file

@ -64,7 +64,7 @@
return ret;
}
- (XMPPIQ*)errorIQWithType: (OFString*)type_
- (XMPPIQ*)errorIQWithType: (OFString*)type
condition: (OFString*)condition
text: (OFString*)text
{
@ -75,7 +75,7 @@
namespace: XMPP_NS_CLIENT];
[error addAttributeWithName: @"type"
stringValue: type_];
stringValue: type];
[error addChild: [OFXMLElement elementWithName: condition
namespace: XMPP_NS_STANZAS]];
if (text)
@ -91,10 +91,10 @@
return ret;
}
- (XMPPIQ*)errorIQWithType: (OFString*)type_
- (XMPPIQ*)errorIQWithType: (OFString*)type
condition: (OFString*)condition
{
return [self errorIQWithType: type_
return [self errorIQWithType: type
condition: condition
text: nil];
}