Differences From Artifact [9d5fdb884e]:
- File src/XMPPPresence.m — part of check-in [e009b1b5c8] at 2012-01-25 20:55:23 on branch trunk — If a presence has no type, assume "available", as per RFC 6121. (user: js, size: 2703) [annotate] [blame] [check-ins using]
To Artifact [929fa57282]:
- File src/XMPPPresence.m — part of check-in [58085da5c5] at 2012-01-26 12:35:05 on branch trunk — Style improvements. (user: js, size: 2718) [annotate] [blame] [check-ins using]
︙ | |||
77 78 79 80 81 82 83 84 85 86 87 88 89 90 | 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | + + | ID: ID_]; } - (OFString*)type { if (type == nil) return @"available"; return type; } - (void)addShow: (OFString*)show { [self addChild: [OFXMLElement elementWithName: @"show" namespace: XMPP_NS_CLIENT stringValue: show]]; |
︙ |