forked from qt-creator/qt-creator
Fix coding style for else statements
Change-Id: I1309db70e98d678e150388c76ce665e988fdf081 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
c67f7f6349
commit
ad9e7ccab6
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user