| 223 | } |
| 224 | |
| 225 | void MacroActionHttpEdit::UpdateEntryData() |
| 226 | { |
| 227 | if (!_entryData) { |
| 228 | return; |
| 229 | } |
| 230 | |
| 231 | _url->setText(_entryData->_url); |
| 232 | _data->setPlainText(_entryData->_data); |
| 233 | _setHeaders->setChecked(_entryData->_setHeaders); |
| 234 | _headerList->SetStringList(_entryData->_headers); |
| 235 | _methods->setCurrentIndex(static_cast<int>(_entryData->_method)); |
| 236 | _timeout->SetDuration(_entryData->_timeout); |
| 237 | SetWidgetVisibility(); |
| 238 | } |
| 239 | |
| 240 | void MacroActionHttpEdit::URLChanged() |
| 241 | { |
nothing calls this directly
no test coverage detected