Cdb: Use decimal prefix for frame number

Change-Id: Ie6e30a04009db4e75e001d2f0e17a2d2ab10d778
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
David Schulz
2016-12-19 10:27:29 +01:00
parent ffbe6148e8
commit ab1b631d76

View File

@@ -1210,7 +1210,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 " + QString::number(index), NoFlags}); runCommand({".frame 0n" + QString::number(index), NoFlags});
updateLocals(); updateLocals();
} }