| 1658 | |
| 1659 | |
| 1660 | void XMLElement::SetText( const char* inText ) |
| 1661 | { |
| 1662 | if ( FirstChild() && FirstChild()->ToText() ) |
| 1663 | FirstChild()->SetValue( inText ); |
| 1664 | else { |
| 1665 | XMLText* theText = GetDocument()->NewText( inText ); |
| 1666 | InsertFirstChild( theText ); |
| 1667 | } |
| 1668 | } |
| 1669 | |
| 1670 | |
| 1671 | void XMLElement::SetText( int v ) |
nothing calls this directly
no test coverage detected