Skip to content
Snippets Groups Projects
Commit 3a3d9c14 authored by Christiaan Janssen's avatar Christiaan Janssen
Browse files

QmlCppDebugger: frame change now managed by DebuggerEngine

reviewed-by: hjk
parent dbe0d593
No related branches found
No related tags found
No related merge requests found
...@@ -171,6 +171,7 @@ void QmlCppEngine::activateFrame(int index) ...@@ -171,6 +171,7 @@ void QmlCppEngine::activateFrame(int index)
d->m_qmlEngine->activateFrame(index - d->m_stackBoundary); d->m_qmlEngine->activateFrame(index - d->m_stackBoundary);
else else
d->m_cppEngine->activateFrame(index); d->m_cppEngine->activateFrame(index);
stackHandler()->setCurrentIndex(index);
} }
void QmlCppEngine::reloadModules() void QmlCppEngine::reloadModules()
...@@ -369,16 +370,6 @@ void QmlCppEngine::executeDebuggerCommand(const QString &command) ...@@ -369,16 +370,6 @@ void QmlCppEngine::executeDebuggerCommand(const QString &command)
d->m_cppEngine->executeDebuggerCommand(command); d->m_cppEngine->executeDebuggerCommand(command);
} }
void QmlCppEngine::frameUp()
{
d->m_activeEngine->frameUp();
}
void QmlCppEngine::frameDown()
{
d->m_activeEngine->frameDown();
}
///////////////////////////////////////////////////////// /////////////////////////////////////////////////////////
void QmlCppEngine::setupEngine() void QmlCppEngine::setupEngine()
......
...@@ -75,9 +75,6 @@ protected: ...@@ -75,9 +75,6 @@ protected:
void executeJumpToLine(const QString &fileName, int lineNumber); void executeJumpToLine(const QString &fileName, int lineNumber);
void executeDebuggerCommand(const QString &command); void executeDebuggerCommand(const QString &command);
void frameUp();
void frameDown();
void setupEngine(); void setupEngine();
void setupInferior(); void setupInferior();
void runEngine(); void runEngine();
......
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