| 318 | } |
| 319 | |
| 320 | void VariableTree::changeVariableFormat(int format) |
| 321 | { |
| 322 | auto* const selectedVariable = this->selectedVariable(); |
| 323 | if (!selectedVariable) |
| 324 | return; |
| 325 | selectedVariable->setFormat(static_cast<Variable::format_t>(format)); |
| 326 | } |
| 327 | |
| 328 | void VariableTree::watchDelete() |
| 329 | { |
nothing calls this directly
no test coverage detected