| 281 | |
| 282 | |
| 283 | void DebugControlsWidget::setStartingEnabled(bool enabled) |
| 284 | { |
| 285 | m_actionRun->setEnabled(enabled && canExec()); |
| 286 | // TODO: we need to support specifying whether the adapter supports attaching to a pid |
| 287 | m_actionAttachPid->setEnabled(enabled && canExec()); |
| 288 | m_actionAttachPid->setVisible(enabled); |
| 289 | } |
| 290 | |
| 291 | |
| 292 | void DebugControlsWidget::setStoppingEnabled(bool enabled) |
nothing calls this directly
no outgoing calls
no test coverage detected