summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/qml/qmlcppengine.cpp
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2016-07-14 10:00:15 +0200
committerhjk <hjk@qt.io>2016-07-21 06:20:52 +0000
commit6e925910b460a8accec07de8d37f4610678a41b5 (patch)
treec71aa3d260a8d259d588814232d23ab324079ade /src/plugins/debugger/qml/qmlcppengine.cpp
parent66142d94d2a7dad970c4dcc37e5bd37f62e4d933 (diff)
downloadqt-creator-6e925910b460a8accec07de8d37f4610678a41b5.tar.gz
Debugger/BinEditor: Standardize interface
Change-Id: I4acf6bc7648e57c564e86023176ae3905a293a99 Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/debugger/qml/qmlcppengine.cpp')
-rw-r--r--src/plugins/debugger/qml/qmlcppengine.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/plugins/debugger/qml/qmlcppengine.cpp b/src/plugins/debugger/qml/qmlcppengine.cpp
index b9f616f703..5d53735b7f 100644
--- a/src/plugins/debugger/qml/qmlcppengine.cpp
+++ b/src/plugins/debugger/qml/qmlcppengine.cpp
@@ -129,10 +129,14 @@ void QmlCppEngine::watchPoint(const QPoint &point)
m_cppEngine->watchPoint(point);
}
-void QmlCppEngine::fetchMemory(MemoryAgent *ma, QObject *obj,
- quint64 addr, quint64 length)
+void QmlCppEngine::fetchMemory(MemoryAgent *agent, quint64 addr, quint64 length)
{
- m_cppEngine->fetchMemory(ma, obj, addr, length);
+ m_cppEngine->fetchMemory(agent, addr, length);
+}
+
+void QmlCppEngine::changeMemory(MemoryAgent *agent, quint64 addr, const QByteArray &data)
+{
+ m_cppEngine->changeMemory(agent, addr, data);
}
void QmlCppEngine::fetchDisassembler(DisassemblerAgent *da)