debugger: make QVector and std::vector writable

This commit is contained in:
hjk
2011-05-10 20:42:22 +02:00
parent d0b12f8f19
commit 0747859006
4 changed files with 42 additions and 9 deletions

View File

@@ -3905,9 +3905,9 @@ void GdbEngine::assignValueInDebugger(const WatchData *data,
{
if (hasPython()) {
QByteArray cmd = "bbedit "
+ data->type.toBase64() + ' '
+ expression.toUtf8().toBase64() + ' '
+ value.toString().toUtf8().toBase64();
+ data->type.toHex() + ','
+ expression.toUtf8().toHex() + ','
+ value.toString().toUtf8().toHex();
postCommand(cmd, Discardable, CB(handleVarAssign));
} else {
postCommand("-var-delete assign");