aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/stackhandler.cpp
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2016-08-03 22:19:34 +0200
committerhjk <hjk@qt.io>2016-08-22 10:29:07 +0000
commit33c79a44407d6bb3ce5b50f638a1b71e2d36bbd2 (patch)
tree963589063578073986740ea83a175f7ec2283123 /src/plugins/debugger/stackhandler.cpp
parent68aeff4b9f7c576e62153337f6acf5df1bf05eb1 (diff)
Debugger: Simplify BinEditor usage
Change-Id: I77a226cce97a85471fbe3d57a09d5b8318c7cce7 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/debugger/stackhandler.cpp')
-rw-r--r--src/plugins/debugger/stackhandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/stackhandler.cpp b/src/plugins/debugger/stackhandler.cpp
index ec55f9e492..0afb0ba9bc 100644
--- a/src/plugins/debugger/stackhandler.cpp
+++ b/src/plugins/debugger/stackhandler.cpp
@@ -395,8 +395,8 @@ bool StackHandler::contextMenuEvent(const ItemViewEvent &ev)
[this, row, frame, address] {
MemoryViewSetupData data;
data.startAddress = address;
- data.title = tr("Memory at Frame #%1 (%2) 0x%3").
- arg(row).arg(frame.function).arg(address, 0, 16);
+ data.title = tr("Memory at Frame #%1 (%2) 0x%3")
+ .arg(row).arg(frame.function).arg(address, 0, 16);
data.markup.push_back(MemoryMarkup(address, 1, QColor(Qt::blue).lighter(),
tr("Frame #%1 (%2)").arg(row).arg(frame.function)));
m_engine->openMemoryView(data);