| 1577 | |
| 1578 | |
| 1579 | void XMLElement::SetText( const char* inText ) |
| 1580 | { |
| 1581 | if ( FirstChild() && FirstChild()->ToText() ) |
| 1582 | FirstChild()->SetValue( inText ); |
| 1583 | else { |
| 1584 | XMLText* theText = GetDocument()->NewText( inText ); |
| 1585 | InsertFirstChild( theText ); |
| 1586 | } |
| 1587 | } |
| 1588 | |
| 1589 | |
| 1590 | void XMLElement::SetText( int v ) |
nothing calls this directly
no test coverage detected