| 525 | */ |
| 526 | template <typename... Args> |
| 527 | void SetWidgetsLoweredState(bool lowered_stat, Args... widgets) |
| 528 | { |
| 529 | (SetWidgetLoweredState(widgets, lowered_stat), ...); |
| 530 | } |
| 531 | |
| 532 | /** |
| 533 | * Raises the widgets and sets widgets dirty that are lowered. |
no outgoing calls
no test coverage detected