| 437 | } |
| 438 | |
| 439 | void widget::disable_all(bool st) |
| 440 | { |
| 441 | functor_disable func(st); |
| 442 | for (U32 i = 0; i < lengthof(known_types); ++i) |
| 443 | { |
| 444 | for_each(known_types[i].widget_type, known_types[i].widget_size, func); |
| 445 | } |
| 446 | } |
| 447 | |
| 448 | void widget::add_motive(const motive& m) |
| 449 | { |
nothing calls this directly
no test coverage detected