diff options
Diffstat (limited to 'src/plugins/debugger/stackwindow.cpp')
-rw-r--r-- | src/plugins/debugger/stackwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/stackwindow.cpp b/src/plugins/debugger/stackwindow.cpp index fed2e8031f..39b112189e 100644 --- a/src/plugins/debugger/stackwindow.cpp +++ b/src/plugins/debugger/stackwindow.cpp @@ -182,9 +182,9 @@ void StackTreeView::contextMenuEvent(QContextMenuEvent *ev) if (!act) return; - if (act == actCopyContents) + if (act == actCopyContents) { copyContentsToClipboard(); - else if (act == actShowMemory) { + } else if (act == actShowMemory) { const QString title = tr("Memory at Frame #%1 (%2) 0x%3"). arg(row).arg(frame.function).arg(address, 0, 16); QList<MemoryMarkup> ml; |