forked from qt-creator/qt-creator
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:
@@ -1211,7 +1211,7 @@ void CdbEngine::activateFrame(int index)
|
||||
stackHandler()->setCurrentIndex(index);
|
||||
gotoLocation(frame);
|
||||
if (m_pythonVersion > 0x030000)
|
||||
runCommand({".frame 0n" + QString::number(index), NoFlags});
|
||||
runCommand({".frame " + QString::number(index), NoFlags});
|
||||
updateLocals();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user