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