Overview
Comment: | Fix wrong selector name. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
09ffe6e3742282b75247c8f8e002b197 |
User & Date: | js on 2013-02-16 22:42:30 |
Other Links: | manifest | tags |
Context
2013-07-12
| ||
14:12 | Adjust to ObjFW API and fix a disconnect bug. check-in: 1813701690 user: js tags: trunk | |
2013-02-16
| ||
22:42 | Fix wrong selector name. check-in: 09ffe6e374 user: js tags: trunk | |
2013-02-14
| ||
23:21 | Fix handling of nick changes. check-in: 22699c973b user: js tags: trunk | |
Changes
Modified src/IRCConnection.h from [3b4efe637d] to [940ece26d9].
︙ | ︙ | |||
82 83 84 85 86 87 88 | } #ifdef OF_HAVE_PROPERTIES @property (copy) OFString *server; @property (assign) uint16_t port; @property (copy) OFString *nickname, *username, *realname; @property (assign) id <IRCConnectionDelegate> delegate; | | | 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | } #ifdef OF_HAVE_PROPERTIES @property (copy) OFString *server; @property (assign) uint16_t port; @property (copy) OFString *nickname, *username, *realname; @property (assign) id <IRCConnectionDelegate> delegate; @property (readonly, retain) OFTCPSocket *socket; #endif - (void)setServer: (OFString*)server; - (OFString*)server; - (void)setPort: (uint16_t)port; - (uint16_t)port; - (void)setNickname: (OFString*)nickname; |
︙ | ︙ |
Modified src/IRCConnection.m from [d3026e4a44] to [db72e704d4].
︙ | ︙ | |||
571 572 573 574 575 576 577 | - (BOOL)socket: (OFTCPSocket*)socket didReceiveISO88591Line: (OFString*)line exception: (OFException*)exception { if (line != nil) { [self IRC_processLine: line]; [socket asyncReadLineWithTarget: self | | | 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 | - (BOOL)socket: (OFTCPSocket*)socket didReceiveISO88591Line: (OFString*)line exception: (OFException*)exception { if (line != nil) { [self IRC_processLine: line]; [socket asyncReadLineWithTarget: self selector: @selector(socket: didReceiveLine: exception:)]; } return NO; } |
︙ | ︙ |