summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/qml/qmlcppengine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/debugger/qml/qmlcppengine.h')
-rw-r--r--src/plugins/debugger/qml/qmlcppengine.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/plugins/debugger/qml/qmlcppengine.h b/src/plugins/debugger/qml/qmlcppengine.h
index 665d343119..898803ee69 100644
--- a/src/plugins/debugger/qml/qmlcppengine.h
+++ b/src/plugins/debugger/qml/qmlcppengine.h
@@ -68,7 +68,7 @@ public:
void reloadSourceFiles();
void reloadFullStack();
- void setRegisterValue(int regnr, const QString &value);
+ void setRegisterValue(const QByteArray &name, const QString &value);
bool hasCapability(unsigned cap) const;
bool isSynchronous() const;
@@ -78,7 +78,7 @@ public:
void updateAll();
void attemptBreakpointSynchronization();
- bool acceptsBreakpoint(BreakpointModelId id) const;
+ bool acceptsBreakpoint(Breakpoint bp) const;
void selectThread(ThreadId threadId);
void assignValueInDebugger(const WatchData *data,
@@ -97,6 +97,8 @@ public:
protected:
void detachDebugger();
+ void reloadDebuggingHelpers();
+ void debugLastCommand();
void executeStep();
void executeStepOut();
void executeNext();
@@ -128,15 +130,11 @@ protected:
void notifyInferiorSetupOk();
void notifyEngineRemoteServerRunning(const QByteArray &, int pid);
-signals:
- void aboutToNotifyInferiorSetupOk();
-
private:
void engineStateChanged(DebuggerState newState);
void setState(DebuggerState newState, bool forced = false);
void slaveEngineStateChanged(DebuggerEngine *slaveEngine, DebuggerState state);
- void readyToExecuteQmlStep();
void setActiveEngine(DebuggerEngine *engine);
private: