ObjXMPP  Diff

Differences From Artifact [4e83efc9ba]:

To Artifact [a2b92c5652]:


86
87
88
89
90
91
92






93
		[self removeChild: oldBody];

	if (body != nil)
		[self addChild: [OFXMLElement elementWithName: @"body"
						    namespace: XMPP_NS_CLIENT
						  stringValue: body]];
}






@end







>
>
>
>
>
>

86
87
88
89
90
91
92
93
94
95
96
97
98
99
		[self removeChild: oldBody];

	if (body != nil)
		[self addChild: [OFXMLElement elementWithName: @"body"
						    namespace: XMPP_NS_CLIENT
						  stringValue: body]];
}

- (OFString*)body
{
	return [[self elementForName: @"body"
			   namespace: XMPP_NS_CLIENT] stringValue];
}
@end