| 1631 | |
| 1632 | |
| 1633 | void XMLElement::SetText( const char* inText ) |
| 1634 | { |
| 1635 | if ( FirstChild() && FirstChild()->ToText() ) |
| 1636 | FirstChild()->SetValue( inText ); |
| 1637 | else { |
| 1638 | XMLText* theText = GetDocument()->NewText( inText ); |
| 1639 | InsertFirstChild( theText ); |
| 1640 | } |
| 1641 | } |
| 1642 | |
| 1643 | |
| 1644 | void XMLElement::SetText( int v ) |
nothing calls this directly
no test coverage detected