diff options
author | Aurindam Jana <[email protected]> | 2011-10-17 15:06:56 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2011-10-17 16:26:24 +0200 |
commit | 2a271e396c18bedaa10894ef8466074e933ee598 (patch) | |
tree | d7555ae428a77e49479dcedcae85281d69904536 /src/plugins/debugger/stackwindow.cpp | |
parent | 147eac7e0465affaa4cea3d06b51b520b464eae8 (diff) |
Debugger: Show/Hide Address Column in Stack Window
Show Address column in stack window only if explicitly enabled.
The address column is hidden by default.
Change-Id: I4e4b019dbcde1c2edb9fb3012831eee5054a8a22
Reviewed-by: Kai Koehne <[email protected]>
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/debugger/stackwindow.cpp')
-rw-r--r-- | src/plugins/debugger/stackwindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/debugger/stackwindow.cpp b/src/plugins/debugger/stackwindow.cpp index 8191459041f..b431675fd8a 100644 --- a/src/plugins/debugger/stackwindow.cpp +++ b/src/plugins/debugger/stackwindow.cpp @@ -88,6 +88,7 @@ void StackWindow::setModel(QAbstractItemModel *model) BaseWindow::setModel(model); resizeColumnToContents(0); resizeColumnToContents(3); + showAddressColumn(debuggerCore()->action(UseAddressInStackView)->isChecked()); } void StackWindow::contextMenuEvent(QContextMenuEvent *ev) |