diff options
author | hjk <qtc-committer@nokia.com> | 2010-11-24 11:44:43 +0100 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2010-11-24 15:55:45 +0100 |
commit | 90657a496bb83377c01662a434d6edc19a059033 (patch) | |
tree | ac08bb638e5b6355b0bcd24c1515759d07e70195 /src/plugins/debugger/stackwindow.cpp | |
parent | 714f7656a6a6968f919e6727995f6ccfdba440bb (diff) | |
download | qt-creator-90657a496bb83377c01662a434d6edc19a059033.tar.gz |
debugger: small usability fixes for dissassembler, breakpoint view, location
Diffstat (limited to 'src/plugins/debugger/stackwindow.cpp')
-rw-r--r-- | src/plugins/debugger/stackwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/stackwindow.cpp b/src/plugins/debugger/stackwindow.cpp index 25f5cae841..d5bda5594b 100644 --- a/src/plugins/debugger/stackwindow.cpp +++ b/src/plugins/debugger/stackwindow.cpp @@ -162,7 +162,7 @@ void StackWindow::contextMenuEvent(QContextMenuEvent *ev) (void) new MemoryViewAgent(currentEngine(), address); else if (act == actShowDisassembler) { DisassemblerViewAgent *agent = new DisassemblerViewAgent(engine); - agent->setFrame(frame); + agent->setFrame(frame, true, false); } } |