| 153 | } |
| 154 | |
| 155 | void MacroActionRandomEdit::UpdateEntryData() |
| 156 | { |
| 157 | if (!_entryData) { |
| 158 | return; |
| 159 | } |
| 160 | |
| 161 | _list->SetContent(_entryData->_macros); |
| 162 | _allowRepeat->setChecked(_entryData->_allowRepeat); |
| 163 | _allowRepeat->setVisible(ShouldShowAllowRepeat()); |
| 164 | adjustSize(); |
| 165 | } |
| 166 | |
| 167 | void MacroActionRandomEdit::MacroRemove(const QString &) |
| 168 | { |
nothing calls this directly
no test coverage detected