From 763330030ffef6c8f1d12117e262a44894b9ee5a Mon Sep 17 00:00:00 2001 From: David Schulz Date: Tue, 31 Jan 2017 09:16:43 +0100 Subject: [PATCH] Revert "Cdb: Use decimal prefix for frame number" This reverts commit ab1b631d76a313f1d07be0bfd48d0a9d7b50d9a2. 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 --- src/plugins/debugger/cdb/cdbengine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/debugger/cdb/cdbengine.cpp b/src/plugins/debugger/cdb/cdbengine.cpp index 37be2f653ff..db6f103a55d 100644 --- a/src/plugins/debugger/cdb/cdbengine.cpp +++ b/src/plugins/debugger/cdb/cdbengine.cpp @@ -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(); }