forked from qt-creator/qt-creator
Debugger: Fix editing values in GDB
This fixes a regression introduced in 3.6.0. Change-Id: Ia87a8a60e43e99db9c214d95b8a89af15ea742fc Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com> Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
This commit is contained in:
@@ -3645,7 +3645,7 @@ void GdbEngine::handleVarAssign(const DebuggerResponse &)
|
||||
void GdbEngine::assignValueInDebugger(WatchItem *item,
|
||||
const QString &expression, const QVariant &value)
|
||||
{
|
||||
DebuggerCommand cmd("assignValue");
|
||||
DebuggerCommand cmd("assignValue", PythonCommand);
|
||||
cmd.arg("type", item->type.toHex());
|
||||
cmd.arg("expr", expression.toLatin1().toHex());
|
||||
cmd.arg("value", value.toString().toLatin1().toHex());
|
||||
|
Reference in New Issue
Block a user