| 659 | } |
| 660 | |
| 661 | void MacroConditionDateEdit::ShowNextMatch() |
| 662 | { |
| 663 | if (!_entryData || _entryData->_dayOfWeekCheck || |
| 664 | !_entryData->_repeat) { |
| 665 | return; |
| 666 | } |
| 667 | QString format(obs_module_text( |
| 668 | "AdvSceneSwitcher.condition.date.layout.nextMatchDate")); |
| 669 | _nextMatchDate->setText( |
| 670 | format.arg(_entryData->GetNextMatchDateTime().toString())); |
| 671 | } |
| 672 | |
| 673 | void MacroConditionDateEdit::PatternChanged() |
| 674 | { |
nothing calls this directly
no test coverage detected