| 390 | } |
| 391 | |
| 392 | void AttachProcessDialog::apply() |
| 393 | { |
| 394 | m_selectedPid = m_processListWidget->GetSelectedPid(); |
| 395 | if (!m_selectedPid) |
| 396 | { |
| 397 | reject(); |
| 398 | return; |
| 399 | } |
| 400 | |
| 401 | accept(); |
| 402 | } |
nothing calls this directly
no test coverage detected