Overview
Comment: | Change -[XMPPMessage addBody:] to -[XMPPMessage setBody:]. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
694e1355dd54b74b9dd4d7f136dd1dc2 |
User & Date: | js on 2012-02-03 08:05:51 |
Other Links: | manifest | tags |
Context
2012-02-03
| ||
09:40 | Merge. check-in: 7738fa4342 user: js tags: trunk | |
08:05 | Change -[XMPPMessage addBody:] to -[XMPPMessage setBody:]. check-in: 694e1355dd user: js tags: trunk | |
08:04 | Clean up properties. check-in: 5d6af5c663 user: js tags: trunk | |
Changes
Modified src/XMPPMessage.h from [7899970ddc] to [2e4d4d1193].
︙ | |||
90 91 92 93 94 95 96 | 90 91 92 93 94 95 96 97 98 99 100 101 102 | - + - + - + | * \param ID The value for the stanza's id attribute * \return A initialized XMPPMessage */ - initWithType: (OFString*)type ID: (OFString*)ID; /** |
Modified src/XMPPMessage.m from [b04caf9947] to [4e83efc9ba].
︙ | |||
73 74 75 76 77 78 79 | 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | - + + + + + + + + - - - + + + | ID: (OFString*)ID_ { return [super initWithName: @"message" type: type_ ID: ID_]; } |