| 801 | } |
| 802 | |
| 803 | void SwitcherData::checkSwitchCooldown(bool &match) |
| 804 | { |
| 805 | if (!match || !enableCooldown) { |
| 806 | return; |
| 807 | } |
| 808 | |
| 809 | if (cooldown.DurationReached()) { |
| 810 | cooldown.Reset(); |
| 811 | } else { |
| 812 | match = false; |
| 813 | vblog(LOG_INFO, "cooldown active - ignoring match"); |
| 814 | } |
| 815 | } |
| 816 | |
| 817 | static void populateStartupBehavior(QComboBox *cb) |
| 818 | { |
nothing calls this directly
no test coverage detected