| 477 | } |
| 478 | |
| 479 | Node* Node::toBack() { |
| 480 | if ( NULL != mParentNode && mParentNode->mChild != this ) { |
| 481 | mParentNode->childAddAt( this, 0 ); |
| 482 | } |
| 483 | return this; |
| 484 | } |
| 485 | |
| 486 | void Node::toPosition( const Uint32& Pos ) { |
| 487 | if ( NULL != mParentNode ) { |
no test coverage detected