Fix wrong selector name.
FossilOrigin-Name: 09ffe6e3742282b75247c8f8e002b19766a1beb57a032dec5778b37776373825
This commit is contained in:
parent
89de85cc61
commit
52fcf8b32d
2 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@
|
||||||
@property (assign) uint16_t port;
|
@property (assign) uint16_t port;
|
||||||
@property (copy) OFString *nickname, *username, *realname;
|
@property (copy) OFString *nickname, *username, *realname;
|
||||||
@property (assign) id <IRCConnectionDelegate> delegate;
|
@property (assign) id <IRCConnectionDelegate> delegate;
|
||||||
@property (readonly, retain, getter=socket) OFTCPSocket *sock;
|
@property (readonly, retain) OFTCPSocket *socket;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
- (void)setServer: (OFString*)server;
|
- (void)setServer: (OFString*)server;
|
||||||
|
|
|
@ -575,7 +575,7 @@
|
||||||
if (line != nil) {
|
if (line != nil) {
|
||||||
[self IRC_processLine: line];
|
[self IRC_processLine: line];
|
||||||
[socket asyncReadLineWithTarget: self
|
[socket asyncReadLineWithTarget: self
|
||||||
selector: @selector(connection:
|
selector: @selector(socket:
|
||||||
didReceiveLine:
|
didReceiveLine:
|
||||||
exception:)];
|
exception:)];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue