LLDB: update display options once directly after run

The display options like "Use debugging helpers", "Dereference Pointers"
etc are already updated the moment they change while the debugger is
running, but it was missing the initialization at startup.

Change-Id: Id39a38c6646c3c19819e2c122d7f8be285eae09e
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Eike Ziller
2013-11-04 17:14:05 +01:00
committed by hjk
parent 58b98b039c
commit 295d01b0f5

View File

@@ -188,6 +188,7 @@ void LldbEngine::setupInferior()
cmd.arg("platform", sp.platform);
runCommand(cmd);
requestUpdateWatchers();
updateLocals(); // update display options
}
void LldbEngine::runEngine()