| 334 | } |
| 335 | |
| 336 | void VariableTree::copyVariableValue() |
| 337 | { |
| 338 | const auto* const selectedVariable = this->selectedVariable(); |
| 339 | if (!selectedVariable) |
| 340 | return; |
| 341 | QApplication::clipboard()->setText(selectedVariable->value()); |
| 342 | } |
| 343 | |
| 344 | void VariableTree::stopOnChange() |
| 345 | { |
nothing calls this directly
no test coverage detected