| 138 | } |
| 139 | |
| 140 | void MacroActionFileEdit::UpdateEntryData() |
| 141 | { |
| 142 | if (!_entryData) { |
| 143 | return; |
| 144 | } |
| 145 | |
| 146 | _actions->setCurrentIndex(static_cast<int>(_entryData->_action)); |
| 147 | _filePath->SetPath(_entryData->_file); |
| 148 | _text->setPlainText(_entryData->_text); |
| 149 | |
| 150 | adjustSize(); |
| 151 | updateGeometry(); |
| 152 | } |
| 153 | |
| 154 | void MacroActionFileEdit::PathChanged(const QString &text) |
| 155 | { |
nothing calls this directly
no test coverage detected