summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/qml/qmlcppengine.cpp
diff options
context:
space:
mode:
authorhjk <hjk121@nokiamail.com>2014-12-12 10:20:07 +0100
committerhjk <hjk121@nokiamail.com>2014-12-12 10:53:43 +0100
commit62d21d123c9b0ed700bf252020554741df33eee5 (patch)
treee1b0aa34c2cadf9eb9fbdce53f42ae9e04cc2f94 /src/plugins/debugger/qml/qmlcppengine.cpp
parent48915c6231154068b66628d6751a1a58df245cc3 (diff)
downloadqt-creator-62d21d123c9b0ed700bf252020554741df33eee5.tar.gz
Debugger: Remove traces of outdated attempt at combined stepping
Has not been usable for a while and will be superseded by "native" mixed stepping. Change-Id: I2902a98b7ad4e4b29e389e54fb6488bf711840dd Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
Diffstat (limited to 'src/plugins/debugger/qml/qmlcppengine.cpp')
-rw-r--r--src/plugins/debugger/qml/qmlcppengine.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/plugins/debugger/qml/qmlcppengine.cpp b/src/plugins/debugger/qml/qmlcppengine.cpp
index 2d00fba8bc..8e15956efe 100644
--- a/src/plugins/debugger/qml/qmlcppengine.cpp
+++ b/src/plugins/debugger/qml/qmlcppengine.cpp
@@ -285,26 +285,10 @@ void QmlCppEngine::detachDebugger()
void QmlCppEngine::executeStep()
{
-// TODO: stepping from qml -> cpp requires more thought
-// if (m_activeEngine == m_qmlEngine) {
-// QTC_CHECK(m_cppEngine->state() == InferiorRunOk);
-// if (m_cppEngine->setupQmlStep(true))
-// return; // Wait for callback to readyToExecuteQmlStep()
-// } else {
-// notifyInferiorRunRequested();
-// m_cppEngine->executeStep();
-// }
-
notifyInferiorRunRequested();
m_activeEngine->executeStep();
}
-void QmlCppEngine::readyToExecuteQmlStep()
-{
- notifyInferiorRunRequested();
- m_qmlEngine->executeStep();
-}
-
void QmlCppEngine::executeStepOut()
{
notifyInferiorRunRequested();