| 423 | |
| 424 | |
| 425 | const TiXmlNode* TiXmlNode::PreviousSibling( const char * _value ) const |
| 426 | { |
| 427 | const TiXmlNode* node; |
| 428 | for ( node = prev; node; node = node->prev ) |
| 429 | { |
| 430 | if ( strcmp( node->Value(), _value ) == 0 ) |
| 431 | return node; |
| 432 | } |
| 433 | return 0; |
| 434 | } |
| 435 | |
| 436 | |
| 437 | void TiXmlElement::RemoveAttribute( const char * name ) |