| 320 | } |
| 321 | |
| 322 | void MacroConditionSlideshowEdit::UpdateEntryData() |
| 323 | { |
| 324 | if (!_entryData) { |
| 325 | return; |
| 326 | } |
| 327 | |
| 328 | _conditions->setCurrentIndex(static_cast<int>(_entryData->_condition)); |
| 329 | _sources->SetSource(_entryData->GetSource()); |
| 330 | _index->SetValue(_entryData->_index); |
| 331 | _path->setText(_entryData->_path); |
| 332 | _regex->SetRegexConfig(_entryData->_regex); |
| 333 | SetWidgetVisibility(); |
| 334 | } |
| 335 | |
| 336 | void MacroConditionSlideshowEdit::SetWidgetVisibility() |
| 337 | { |
nothing calls this directly
no test coverage detected