Overview
Comment: | Fix compilation with GCC |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
77e08a12144f020c1748126730395f01 |
User & Date: | js on 2018-11-06 22:34:04 |
Other Links: | manifest | tags |
Context
2018-11-11
| ||
10:47 | Fix method signature mismatch check-in: 75e955fa17 user: js tags: trunk | |
2018-11-06
| ||
22:34 | Fix compilation with GCC check-in: 77e08a1214 user: js tags: trunk | |
22:26 | Readd autogen.sh check-in: 92aea1ca90 user: js tags: trunk | |
Changes
Modified src/IRCConnection.h from [dc79d3b924] to [c619025088].
︙ | ︙ | |||
27 28 29 30 31 32 33 | @class IRCConnection; @class IRCUser; @protocol IRCConnectionDelegate <OFObject> @optional - (void)connection: (IRCConnection *)connection | | | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | @class IRCConnection; @class IRCUser; @protocol IRCConnectionDelegate <OFObject> @optional - (void)connection: (IRCConnection *)connection didCreateSocket: (OF_KINDOF(OFTCPSocket *))socket; - (void)connection: (IRCConnection *)connection didReceiveLine: (OFString *)line; - (void)connection: (IRCConnection *)connection didSendLine: (OFString *)line; - (void)connectionWasEstablished: (IRCConnection *)connection; - (void)connection: (IRCConnection *)connection didSeeUser: (IRCUser *)user |
︙ | ︙ | |||
73 74 75 76 77 78 79 | didReceiveNamesForChannel: (OFString *)channel; - (void)connectionWasClosed: (IRCConnection *)connection; @end @interface IRCConnection: OFObject { Class _socketClass; | | | 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | didReceiveNamesForChannel: (OFString *)channel; - (void)connectionWasClosed: (IRCConnection *)connection; @end @interface IRCConnection: OFObject { Class _socketClass; 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; id <IRCConnectionDelegate> _Nullable _delegate; of_string_encoding_t _fallbackEncoding; |
︙ | ︙ |