forked from qt-creator/qt-creator
Debugger: Rework register handling
Use register names as handle, not their index in the view. Store the raw real values, not some stringified version as primary data. Use subentries to break down bigger registers into smaller entities. Also remember the previous value of a register and show it in a tooltip. Change-Id: I8ae3cc8766a7b211bc7cc827c734e5cf6060825c Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com> Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -3356,8 +3356,11 @@ bool isDockVisible(const QString &objectName)
|
||||
void openMemoryEditor()
|
||||
{
|
||||
AddressDialog dialog;
|
||||
if (dialog.exec() == QDialog::Accepted)
|
||||
currentEngine()->openMemoryView(dialog.address(), 0, QList<MemoryMarkup>(), QPoint());
|
||||
if (dialog.exec() == QDialog::Accepted) {
|
||||
MemoryViewSetupData data;
|
||||
data.startAddress = dialog.address();
|
||||
currentEngine()->openMemoryView(data);
|
||||
}
|
||||
}
|
||||
|
||||
void setThreads(const QStringList &list, int index)
|
||||
|
||||
Reference in New Issue
Block a user