Prefix all ivars with an underscore.
This commit is contained in:
parent
f7999bda6a
commit
4a016c271f
36 changed files with 866 additions and 868 deletions
|
@ -29,8 +29,8 @@
|
|||
self = [super init];
|
||||
|
||||
@try {
|
||||
connection = connection_;
|
||||
[connection addDelegate: self];
|
||||
_connection = connection_;
|
||||
[_connection addDelegate: self];
|
||||
receivedCount = 0;
|
||||
} @catch (id e) {
|
||||
[self release];
|
||||
|
@ -42,7 +42,7 @@
|
|||
|
||||
- (void)dealloc
|
||||
{
|
||||
[connection removeDelegate: self];
|
||||
[_connection removeDelegate: self];
|
||||
|
||||
[super dealloc];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue