| 284 | } |
| 285 | |
| 286 | void MacroActionSequenceEdit::UpdateEntryData() |
| 287 | { |
| 288 | if (!_entryData) { |
| 289 | return; |
| 290 | } |
| 291 | |
| 292 | _macroList->SetContent(_entryData->_macros); |
| 293 | _restart->setChecked(_entryData->_restart); |
| 294 | _resetIndex->SetValue(_entryData->_resetIndex); |
| 295 | _actions->setCurrentIndex(static_cast<int>(_entryData->GetAction())); |
| 296 | _macros->SetCurrentMacro(_entryData->_macro); |
| 297 | SetWidgetVisibility(); |
| 298 | adjustSize(); |
| 299 | } |
| 300 | |
| 301 | void MacroActionSequenceEdit::MacroRemove(const QString &) |
| 302 | { |
nothing calls this directly
no test coverage detected