diff options
author | con <qtc-committer@nokia.com> | 2011-04-15 12:59:44 +0200 |
---|---|---|
committer | con <qtc-committer@nokia.com> | 2011-04-26 10:45:21 +0200 |
commit | 2cf76ead26b39d93d339fe50c3f44ac63d13dda3 (patch) | |
tree | 966fd96626f1c0dd857fdc53e16965cf84046bd0 /src/plugins/debugger/qml/qmlengine.cpp | |
parent | 28c92cf044335330c4ddb23bc30376a269677dd0 (diff) | |
download | qt-creator-2cf76ead26b39d93d339fe50c3f44ac63d13dda3.tar.gz |
Move OutputFormatter to Utils lib.
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); |