QmlCppDebugger: frame change now managed by DebuggerEngine

reviewed-by: hjk
This commit is contained in:
Christiaan Janssen
2011-02-02 13:35:42 +01:00
parent dbe0d593d2
commit 3a3d9c14b9
2 changed files with 1 additions and 13 deletions

View File

@@ -171,6 +171,7 @@ void QmlCppEngine::activateFrame(int index)
d->m_qmlEngine->activateFrame(index - d->m_stackBoundary);
else
d->m_cppEngine->activateFrame(index);
stackHandler()->setCurrentIndex(index);
}
void QmlCppEngine::reloadModules()
@@ -369,16 +370,6 @@ void QmlCppEngine::executeDebuggerCommand(const QString &command)
d->m_cppEngine->executeDebuggerCommand(command);
}
void QmlCppEngine::frameUp()
{
d->m_activeEngine->frameUp();
}
void QmlCppEngine::frameDown()
{
d->m_activeEngine->frameDown();
}
/////////////////////////////////////////////////////////
void QmlCppEngine::setupEngine()