| 2043 | } |
| 2044 | |
| 2045 | XMLComment* XMLElement::InsertNewComment(const char* comment) |
| 2046 | { |
| 2047 | XMLComment* node = _document->NewComment(comment); |
| 2048 | return InsertEndChild(node) ? node : 0; |
| 2049 | } |
| 2050 | |
| 2051 | XMLText* XMLElement::InsertNewText(const char* text) |
| 2052 | { |
nothing calls this directly
no test coverage detected