From 2cf76ead26b39d93d339fe50c3f44ac63d13dda3 Mon Sep 17 00:00:00 2001 From: con Date: Fri, 15 Apr 2011 12:59:44 +0200 Subject: Move OutputFormatter to Utils lib. --- src/plugins/debugger/qml/qmlengine.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/plugins/debugger/qml/qmlengine.cpp') 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); -- cgit v1.2.1