Index: src/IRCConnection.h ================================================================== --- src/IRCConnection.h +++ src/IRCConnection.h @@ -29,11 +29,11 @@ @class IRCUser; @protocol IRCConnectionDelegate @optional - (void)connection: (IRCConnection *)connection - didCreateSocket: (OF_KINDOF(OFTCPSocket) *)socket; + didCreateSocket: (OF_KINDOF(OFTCPSocket *))socket; - (void)connection: (IRCConnection *)connection didReceiveLine: (OFString *)line; - (void)connection: (IRCConnection *)connection didSendLine: (OFString *)line; - (void)connectionWasEstablished: (IRCConnection *)connection; @@ -75,11 +75,11 @@ @end @interface IRCConnection: OFObject { Class _socketClass; - OF_KINDOF(OFTCPSocket) *_Nullable _socket; + OF_KINDOF(OFTCPSocket *) _Nullable _socket; OFString *_Nullable _server; uint16_t _port; OFString *_Nullable _nickname, *_Nullable _username; OFString *_Nullable _realname; OFMutableDictionary OF_GENERIC(OFString *, OFMutableSet *) *_channels;