| 529 | } |
| 530 | |
| 531 | void vtkSortFileNames::Execute() |
| 532 | { |
| 533 | // sort the input file names |
| 534 | this->FileNames->Reset(); |
| 535 | this->SortFileNames(this->InputFileNames, this->FileNames); |
| 536 | |
| 537 | // group the sorted files if grouping is on |
| 538 | this->Groups->Reset(); |
| 539 | if (this->Grouping) |
| 540 | { |
| 541 | this->GroupFileNames(this->FileNames, this->Groups); |
| 542 | } |
| 543 | } |
| 544 | |
| 545 | void vtkSortFileNames::Update() |
| 546 | { |
no test coverage detected