| 1463 | |
| 1464 | |
| 1465 | void XMLElement::SetText( const char* inText ) |
| 1466 | { |
| 1467 | if ( FirstChild() && FirstChild()->ToText() ) |
| 1468 | FirstChild()->SetValue( inText ); |
| 1469 | else { |
| 1470 | XMLText* theText = GetDocument()->NewText( inText ); |
| 1471 | InsertFirstChild( theText ); |
| 1472 | } |
| 1473 | } |
| 1474 | |
| 1475 | |
| 1476 | void XMLElement::SetText( int v ) |
nothing calls this directly
no test coverage detected