debugger: better guess at engine capabilities in dummy engine

Change-Id: Ia37086a126df7f7d84b9509c54472c5d9be6b4ef
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
hjk
2012-01-12 19:32:25 +01:00
committed by hjk
parent 8e1f24a638
commit 7ef450af6d
2 changed files with 24 additions and 1 deletions

View File

@@ -711,6 +711,7 @@ void WatchWindow::contextMenuEvent(QContextMenuEvent *ev)
const bool canHandleWatches = engineCapabilities & AddWatcherCapability;
const DebuggerState state = engine->state();
const bool canInsertWatches = state == InferiorStopOk
|| state == DebuggerNotReady
|| state == InferiorUnrunnable
|| (state == InferiorRunOk && (engineCapabilities & AddWatcherWhileRunningCapability));