| 326 | } |
| 327 | |
| 328 | void VariableTree::watchDelete() |
| 329 | { |
| 330 | auto* const selectedVariable = this->selectedVariable(); |
| 331 | if (!selectedVariable || !qobject_cast<Watches*>(selectedVariable->parent())) |
| 332 | return; |
| 333 | selectedVariable->die(); |
| 334 | } |
| 335 | |
| 336 | void VariableTree::copyVariableValue() |
| 337 | { |
nothing calls this directly
no test coverage detected