Skip to content
Snippets Groups Projects
Commit 07b11819 authored by hjk's avatar hjk
Browse files

debugger: Open memory editor at pointee address, not at pointer address

parent 5da667b4
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ enum WatchRoles
TypeFormatListRole,
TypeFormatRole, // Used to communicate alternative formats to the view.
IndividualFormatRole,
AddressRole, // Some memory address related to the object.
AddressRole, // Address of the object.
};
enum IntegerFormat
......
......@@ -37,6 +37,7 @@
#include "debuggerdialogs.h"
#include "debuggermanager.h"
#include "idebuggerengine.h"
#include "watchutils.h"
#include <utils/qtcassert.h>
#include <utils/savedaction.h>
......@@ -299,9 +300,12 @@ void WatchWindow::contextMenuEvent(QContextMenuEvent *ev)
const bool canShowMemory = engineCapabilities & ShowMemoryCapability;
actWatchUnknownMemory->setEnabled(actionsEnabled && canShowMemory);
if (canShowMemory && !address.isEmpty())
QString editAddress = address;
if (isPointerType(type))
editAddress = model()->data(mi1).toString();
if (canShowMemory && !editAddress.isEmpty())
actWatchKnownMemory =
new QAction(tr("Open Memory Editor at %1").arg(address), &menu);
new QAction(tr("Open Memory Editor at %1").arg(editAddress), &menu);
menu.addSeparator();
QAction *actSetWatchpoint = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment