summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/qml/qmlcppengine.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2017-05-05 14:45:36 +0200
committerhjk <hjk@qt.io>2017-05-18 07:05:09 +0000
commit1f6764a54e4d508826f72a090bcb68fcd16a568d (patch)
tree8126682b1925e08f8b607e2bbf29f56de4aef1a2 /src/plugins/debugger/qml/qmlcppengine.h
parentc9cd6b1223d3225c2ae168cab91c51f3e61bf20e (diff)
downloadqt-creator-1f6764a54e4d508826f72a090bcb68fcd16a568d.tar.gz
Debugger: Move run parameters from engine to tool runner
The parameters belong to the run control, they should not be triplicated in case of a combined engine. Change-Id: I4dd84220edbd7a44b902cc52627fe01d0568db75 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/debugger/qml/qmlcppengine.h')
-rw-r--r--src/plugins/debugger/qml/qmlcppengine.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/debugger/qml/qmlcppengine.h b/src/plugins/debugger/qml/qmlcppengine.h
index 9847af3e5a..9f670a32a0 100644
--- a/src/plugins/debugger/qml/qmlcppengine.h
+++ b/src/plugins/debugger/qml/qmlcppengine.h
@@ -37,7 +37,7 @@ class QmlCppEngine : public DebuggerEngine
Q_OBJECT
public:
- QmlCppEngine(const DebuggerRunParameters &sp, QStringList *errors);
+ QmlCppEngine(DebuggerEngine *cppEngine, bool useTerminal);
~QmlCppEngine() override;
bool canDisplayTooltip() const override;
@@ -80,6 +80,8 @@ public:
DebuggerEngine *cppEngine() override { return m_cppEngine; }
DebuggerEngine *qmlEngine() const;
+ DebuggerEngine *activeEngine() override { return m_activeEngine; }
+ void setRunTool(DebuggerRunTool *runTool) override;
void notifyEngineRemoteSetupFinished(const RemoteSetupResult &result) override;
void resetLocation() override;