Prefix all ivars with an underscore.
FossilOrigin-Name: 8845b8b00bf7ce1cd68b70864335380038bc0a254060ff49d49429aabf69e34a
This commit is contained in:
parent
fcc1c03101
commit
97b6edeb00
4 changed files with 134 additions and 135 deletions
|
@ -77,12 +77,12 @@
|
|||
|
||||
@interface IRCConnection: OFObject
|
||||
{
|
||||
OFTCPSocket *sock;
|
||||
OFString *server;
|
||||
uint16_t port;
|
||||
OFString *nickname, *username, *realname;
|
||||
OFMutableDictionary *channels;
|
||||
id <IRCConnectionDelegate> delegate;
|
||||
OFTCPSocket *_socket;
|
||||
OFString *_server;
|
||||
uint16_t _port;
|
||||
OFString *_nickname, *_username, *_realname;
|
||||
OFMutableDictionary *_channels;
|
||||
id <IRCConnectionDelegate> _delegate;
|
||||
}
|
||||
|
||||
#ifdef OF_HAVE_PROPERTIES
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue