| 32 | } |
| 33 | |
| 34 | void VariableController::update() |
| 35 | { |
| 36 | qCDebug(DEBUGGERLLDB) << "autoUpdate =" << autoUpdate(); |
| 37 | if (autoUpdate() & UpdateWatches) { |
| 38 | variableCollection()->watches()->reinstall(); |
| 39 | } |
| 40 | |
| 41 | if (autoUpdate() & UpdateLocals) { |
| 42 | updateLocals(); |
| 43 | } |
| 44 | |
| 45 | if ((autoUpdate() & UpdateLocals) || |
| 46 | ((autoUpdate() & UpdateWatches) && variableCollection()->watches()->childCount() > 0)) |
| 47 | { |
| 48 | debugSession()->updateAllVariables(); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | #include "moc_variablecontroller.cpp" |
nothing calls this directly
no test coverage detected