----------------------------------------------------------------------------- VController::clearData(); Clear the contents of the DataTable entirely. -----------------------------------------------------------------------------
| 533 | // |
| 534 | //----------------------------------------------------------------------------- |
| 535 | void VController::clearData( void ) |
| 536 | { |
| 537 | while ( mDataTable.getCount() > 0 ) |
| 538 | { |
| 539 | // Clear Item. |
| 540 | clearData( 0 ); |
| 541 | } |
| 542 | } |
| 543 | |
| 544 | //----------------------------------------------------------------------------- |
| 545 | // |
no test coverage detected