Debugger: Rename GdbEngine::{stackListFrames->fetchStack}

Same as LLDB now.

Change-Id: I8a59a977fe45e7f523eae59cbb4cd24b78ad8e7b
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
hjk
2015-10-27 16:13:04 +01:00
parent d5101b5d91
commit 601f6fd819
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1572,7 +1572,7 @@ class Dumper(DumperBase):
def doContinue(self):
gdb.execute('continue')
def stackListFrames(self, args):
def fetchStack(self, args):
def fromNativePath(str):
return str.replace('\\', '/')
+1 -1
View File
@@ -3286,7 +3286,7 @@ void GdbEngine::handleQmlStackTrace(const DebuggerResponse &response)
DebuggerCommand GdbEngine::stackCommand(int depth)
{
DebuggerCommand cmd("stackListFrames");
DebuggerCommand cmd("fetchStack");
cmd.arg("limit", depth);
cmd.arg("nativemixed", isNativeMixedActive());
return cmd;