Overview
Comment: | Having a category for each delegate is not required anymore.
This is thanks to XMPPMulticastDelegate. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
878cac8ce0ea572b005522232b9d9882 |
User & Date: | js on 2012-02-17 17:17:10 |
Other Links: | manifest | tags |
Context
2012-02-21
| ||
17:22 | Fix small typos in configure.ac. check-in: 9831c47eca user: js tags: trunk | |
2012-02-17
| ||
17:17 | Having a category for each delegate is not required anymore. check-in: 878cac8ce0 user: js tags: trunk | |
2012-02-06
| ||
15:53 | Don't import old roster if we got a complete roster by the server. check-in: 57587da1f3 user: js tags: trunk | |
Changes
Modified src/XMPPConnection.h from [e187223fa5] to [d302059d52].
︙ | ︙ | |||
359 360 361 362 363 364 365 | - (void)XMPP_sendSession; - (void)XMPP_handleSessionForConnection: (XMPPConnection*)connection withIQ: (XMPPIQ*)iq; - (OFString*)XMPP_IDNAToASCII: (OFString*)domain; - (XMPPMulticastDelegate*)XMPP_delegates; /// \endcond @end | < < < | 359 360 361 362 363 364 365 | - (void)XMPP_sendSession; - (void)XMPP_handleSessionForConnection: (XMPPConnection*)connection withIQ: (XMPPIQ*)iq; - (OFString*)XMPP_IDNAToASCII: (OFString*)domain; - (XMPPMulticastDelegate*)XMPP_delegates; /// \endcond @end |
Modified src/XMPPConnection.m from [8901a6e637] to [c67c2c3e37].
︙ | ︙ | |||
1099 1100 1101 1102 1103 1104 1105 | { [delegates removeDelegate: delegate]; } - (XMPPMulticastDelegate*)XMPP_delegates { return delegates; | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 1099 1100 1101 1102 1103 1104 1105 1106 1107 | { [delegates removeDelegate: delegate]; } - (XMPPMulticastDelegate*)XMPP_delegates { return delegates; } @end |
Modified src/XMPPRoster.h from [de7818a9b5] to [d99dbd9eba].
︙ | ︙ | |||
149 150 151 152 153 154 155 | /// \cond internal - (void)XMPP_updateRosterItem: (XMPPRosterItem*)rosterItem; - (void)XMPP_handleInitialRosterForConnection: (XMPPConnection*)connection withIQ: (XMPPIQ*)iq; - (XMPPRosterItem*)XMPP_rosterItemWithXMLElement: (OFXMLElement*)element; /// \endcond @end | < < < | 149 150 151 152 153 154 155 | /// \cond internal - (void)XMPP_updateRosterItem: (XMPPRosterItem*)rosterItem; - (void)XMPP_handleInitialRosterForConnection: (XMPPConnection*)connection withIQ: (XMPPIQ*)iq; - (XMPPRosterItem*)XMPP_rosterItemWithXMLElement: (OFXMLElement*)element; /// \endcond @end |
Modified src/XMPPRoster.m from [441232c83a] to [c37f07f5d9].
︙ | ︙ | |||
347 348 349 350 351 352 353 | [dataStorage setStringValue: ver forPath: @"roster.ver"]; [dataStorage save]; } [delegates broadcastSelector: @selector(rosterWasReceived:) withObject: self]; | < < < < < < < < < < < | 347 348 349 350 351 352 353 354 355 | [dataStorage setStringValue: ver forPath: @"roster.ver"]; [dataStorage save]; } [delegates broadcastSelector: @selector(rosterWasReceived:) withObject: self]; } @end |