debugger: make register contents editable (gdb only for now)

This commit is contained in:
hjk
2009-08-18 08:34:48 +02:00
parent cde2b658a7
commit 1e7cee620b
10 changed files with 213 additions and 54 deletions

View File

@@ -98,8 +98,9 @@ public:
virtual void watchPoint(const QPoint &) {}
virtual void fetchMemory(MemoryViewAgent *, quint64 addr, quint64 length)
{ Q_UNUSED(addr); Q_UNUSED(length); }
virtual void fetchDisassembler(DisassemblerViewAgent *, const StackFrame & /* frame */)
{ }
virtual void fetchDisassembler(DisassemblerViewAgent *, const StackFrame &) {}
virtual void setRegisterValue(int regnr, const QString &value)
{ Q_UNUSED(regnr); Q_UNUSED(value); }
};
} // namespace Internal