Skip to content
Snippets Groups Projects
Commit 1b1da8ae authored by hjk's avatar hjk
Browse files

debugger: make DebuggerEngine::setState private.

parent 1688d1e1
No related branches found
No related tags found
No related merge requests found
......@@ -329,9 +329,6 @@ protected:
virtual void shutdownInferior() = 0;
virtual void shutdownEngine() = 0;
void setState(DebuggerState state, bool forced = false);
void setSlaveEngine(bool value);
protected:
DebuggerRunControl *runControl() const;
......@@ -347,8 +344,11 @@ protected:
void showStoppedByExceptionMessageBox(const QString &description);
private:
// wrapper engine needs access to state of its subengines
// Wrapper engine needs access to state of its subengines.
friend class QmlCppEngine;
void setState(DebuggerState state, bool forced = false);
void setSlaveEngine(bool value);
friend class DebuggerEnginePrivate;
DebuggerEnginePrivate *d;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment