Revert "Cdb: Use decimal prefix for frame number"

This reverts commit ab1b631d76.

I'm currently not sure when to use which prefix and the documentation
isn't clear about that either. Currently reverting this change until it
is known what prefix we have to use here.

Change-Id: I906dcffa1b35e462bb6ed9713405d00d342c8a39
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
David Schulz
2017-01-31 09:16:43 +01:00
parent a0c69c517c
commit 763330030f

View File

@@ -1211,7 +1211,7 @@ void CdbEngine::activateFrame(int index)
stackHandler()->setCurrentIndex(index); stackHandler()->setCurrentIndex(index);
gotoLocation(frame); gotoLocation(frame);
if (m_pythonVersion > 0x030000) if (m_pythonVersion > 0x030000)
runCommand({".frame 0n" + QString::number(index), NoFlags}); runCommand({".frame " + QString::number(index), NoFlags});
updateLocals(); updateLocals();
} }