summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/qml/qmlengine.h
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2015-03-19 12:42:53 +0100
committerhjk <hjk@theqtcompany.com>2015-03-20 08:36:57 +0000
commitb3f88df41df29f8a20e7ddf6fd8b83100a75740d (patch)
treed4ba0fc1071fafd8c7ba9c5b6c87ecf674519ae6 /src/plugins/debugger/qml/qmlengine.h
parentb08e5a9bc3dd04e6630f43c459753731e87eda1a (diff)
downloadqt-creator-b3f88df41df29f8a20e7ddf6fd8b83100a75740d.tar.gz
Debugger: Remove most remaining occurrences of WatchData
... in WatchHandler and DebuggerEngine interface. Adjust using code. Change-Id: I6371f3e96ba46a783e23a5767cdde24a10d3fce7 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com> Reviewed-by: hjk <hjk@theqtcompany.com>
Diffstat (limited to 'src/plugins/debugger/qml/qmlengine.h')
-rw-r--r--src/plugins/debugger/qml/qmlengine.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/debugger/qml/qmlengine.h b/src/plugins/debugger/qml/qmlengine.h
index 60fd23dd2c..621947dfe4 100644
--- a/src/plugins/debugger/qml/qmlengine.h
+++ b/src/plugins/debugger/qml/qmlengine.h
@@ -145,10 +145,9 @@ private:
void changeBreakpoint(Breakpoint bp);
bool acceptsBreakpoint(Breakpoint bp) const;
- void assignValueInDebugger(const WatchData *data,
+ void assignValueInDebugger(WatchItem *item,
const QString &expr, const QVariant &value);
-
void loadSymbols(const QString &moduleName);
void loadAllSymbols();
void requestModuleSymbols(const QString &moduleName);
@@ -158,7 +157,7 @@ private:
void reloadFullStack() {}
bool supportsThreads() const { return false; }
- void updateWatchData(const WatchData &data);
+ void updateWatchItem(WatchItem *item);
void watchDataSelected(const QByteArray &iname);
void executeDebuggerCommand(const QString &command, DebuggerLanguages languages);
bool evaluateScript(const QString &expression);