diff options
Diffstat (limited to 'src/plugins/debugger/qml/qmlengine.cpp')
-rw-r--r-- | src/plugins/debugger/qml/qmlengine.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/debugger/qml/qmlengine.cpp b/src/plugins/debugger/qml/qmlengine.cpp index 812ae9101f..c3f6d377ba 100644 --- a/src/plugins/debugger/qml/qmlengine.cpp +++ b/src/plugins/debugger/qml/qmlengine.cpp @@ -200,8 +200,8 @@ void QmlEngine::setupInferior() SIGNAL(processExited(int)), SLOT(disconnected())); connect(&d->m_applicationLauncher, - SIGNAL(appendMessage(QString,ProjectExplorer::OutputFormat)), - SLOT(appendMessage(QString,ProjectExplorer::OutputFormat))); + SIGNAL(appendMessage(QString,Utils::OutputFormat)), + SLOT(appendMessage(QString,Utils::OutputFormat))); connect(&d->m_applicationLauncher, SIGNAL(bringToForegroundRequested(qint64)), runControl(), @@ -214,7 +214,7 @@ void QmlEngine::setupInferior() } } -void QmlEngine::appendMessage(const QString &msg, OutputFormat /* format */) +void QmlEngine::appendMessage(const QString &msg, Utils::OutputFormat /* format */) { showMessage(msg, AppOutput); // FIXME: Redirect to RunControl } @@ -392,7 +392,7 @@ void QmlEngine::startApplicationLauncher() QDir::toNativeSeparators(startParameters().executable), startParameters().processArgs) + QLatin1Char('\n') - , NormalMessageFormat); + , Utils::NormalMessageFormat); d->m_applicationLauncher.start(ApplicationLauncher::Gui, startParameters().executable, startParameters().processArgs); |