diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index e9854d6dfe3..b0e8f7a2b53 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -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());