From ad9e7ccab6e8476c0cb478ea2e4f13354dc21635 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Wed, 17 Jul 2013 00:01:45 +0300 Subject: Fix coding style for else statements Change-Id: I1309db70e98d678e150388c76ce665e988fdf081 Reviewed-by: Eike Ziller --- src/plugins/debugger/stackwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/debugger/stackwindow.cpp') 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 ml; -- cgit v1.2.1