Prefix all ivars with an underscore.

This commit is contained in:
Jonathan Schleifer 2013-02-12 22:35:02 +01:00
parent f7999bda6a
commit 4a016c271f
36 changed files with 866 additions and 868 deletions

View file

@ -33,9 +33,9 @@
password: nil] autorelease];
}
+ EXTERNALAuthWithAuthzid: (OFString*)authzid_
+ EXTERNALAuthWithAuthzid: (OFString*)authzid
{
return [[[self alloc] initWithAuthzid: authzid_
return [[[self alloc] initWithAuthzid: authzid
authcid: nil
password: nil] autorelease];
}
@ -45,8 +45,8 @@
OFDataArray *message = [OFDataArray dataArray];
/* authzid */
if (authzid)
[message addItem: authzid];
if (_authzid)
[message addItem: _authzid];
return message;
}