debugger: work on writable memory view

This commit is contained in:
hjk
2011-02-25 13:21:54 +01:00
parent 14d590590f
commit f125b57163
9 changed files with 62 additions and 24 deletions

View File

@@ -487,6 +487,13 @@ void DebuggerEngine::fetchMemory(MemoryAgent *, QObject *,
Q_UNUSED(length);
}
void DebuggerEngine::changeMemory(MemoryAgent *, QObject *,
quint64 addr, const QByteArray &data)
{
Q_UNUSED(addr);
Q_UNUSED(data);
}
void DebuggerEngine::setRegisterValue(int regnr, const QString &value)
{
Q_UNUSED(regnr);