| 474 | } |
| 475 | |
| 476 | void ConfigList::updateListAllForAll() |
| 477 | { |
| 478 | QListIterator<ConfigList *> it(allLists); |
| 479 | |
| 480 | while (it.hasNext()) { |
| 481 | ConfigList *list = it.next(); |
| 482 | |
| 483 | list->updateList(); |
| 484 | } |
| 485 | } |
| 486 | |
| 487 | void ConfigList::setValue(ConfigItem* item, tristate val) |
| 488 | { |
nothing calls this directly
no test coverage detected