forked from qt-creator/qt-creator
AndroidDebugging: Enable Cpp/QML mixed debugging
Change-Id: Ie748b52a93916b332f1e4fa7c6ff04dd6cc30bfa Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -440,6 +440,18 @@ void QmlCppEngine::notifyInferiorShutdownOk()
|
||||
DebuggerEngine::notifyInferiorShutdownOk();
|
||||
}
|
||||
|
||||
void QmlCppEngine::notifyInferiorSetupOk()
|
||||
{
|
||||
EDEBUG("\nMASTER INFERIOR SETUP OK");
|
||||
emit aboutToNotifyInferiorSetupOk();
|
||||
DebuggerEngine::notifyInferiorSetupOk();
|
||||
}
|
||||
|
||||
void QmlCppEngine::notifyEngineRemoteServerRunning(const QByteArray &serverChannel, int pid)
|
||||
{
|
||||
d->m_cppEngine->notifyEngineRemoteServerRunning(serverChannel, pid);
|
||||
}
|
||||
|
||||
void QmlCppEngine::setupInferior()
|
||||
{
|
||||
EDEBUG("\nMASTER SETUP INFERIOR");
|
||||
|
@@ -125,6 +125,12 @@ protected:
|
||||
void notifyEngineRunAndInferiorRunOk();
|
||||
void notifyInferiorShutdownOk();
|
||||
|
||||
void notifyInferiorSetupOk();
|
||||
void notifyEngineRemoteServerRunning(const QByteArray &, int pid);
|
||||
|
||||
signals:
|
||||
void aboutToNotifyInferiorSetupOk();
|
||||
|
||||
private:
|
||||
void engineStateChanged(DebuggerState newState);
|
||||
void setState(DebuggerState newState, bool forced = false);
|
||||
|
Reference in New Issue
Block a user