debugger: make more bits private

This commit is contained in:
hjk
2010-12-03 16:18:50 +01:00
parent fde3ced40c
commit 2c46a935df
7 changed files with 55 additions and 67 deletions

View File

@@ -203,11 +203,11 @@ void QmlEngine::setupInferior()
emit remoteStartupRequested();
} else {
connect(&d->m_applicationLauncher, SIGNAL(processExited(int)),
this, SLOT(disconnected()));
SLOT(disconnected()));
connect(&d->m_applicationLauncher, SIGNAL(appendMessage(QString,bool)),
runControl(), SLOT(emitAppendMessage(QString,bool)));
connect(&d->m_applicationLauncher, SIGNAL(appendOutput(QString, bool)),
runControl(), SLOT(emitAddToOutputWindow(QString, bool)));
SLOT(appendMessage(QString,bool)));
connect(&d->m_applicationLauncher, SIGNAL(appendOutput(QString,bool)),
SLOT(appendOutput(QString,bool)));
connect(&d->m_applicationLauncher, SIGNAL(bringToForegroundRequested(qint64)),
runControl(), SLOT(bringApplicationToForeground(qint64)));
@@ -218,6 +218,16 @@ void QmlEngine::setupInferior()
}
}
void QmlEngine::appendMessage(const QString &msg, bool)
{
showMessage(msg, AppStuff);
}
void QmlEngine::appendOutput(const QString &msg, bool)
{
showMessage(msg, AppOutput);
}
void QmlEngine::connectionEstablished()
{
attemptBreakpointSynchronization();