| 280 | } |
| 281 | |
| 282 | void MacroActionOSCEdit::UpdateEntryData() |
| 283 | { |
| 284 | if (!_entryData) { |
| 285 | return; |
| 286 | } |
| 287 | |
| 288 | _protocol->setCurrentIndex(static_cast<int>(_entryData->GetProtocol())); |
| 289 | _ip->setText(_entryData->GetIP()); |
| 290 | _port->SetValue(_entryData->GetPortNr()); |
| 291 | _message->SetMessage(_entryData->_message); |
| 292 | |
| 293 | adjustSize(); |
| 294 | updateGeometry(); |
| 295 | } |
| 296 | |
| 297 | void MacroActionOSCEdit::IpChanged() |
| 298 | { |
nothing calls this directly
no test coverage detected