Move OutputFormatter to Utils lib.

This commit is contained in:
con
2011-04-15 12:59:44 +02:00
parent 28c92cf044
commit 2cf76ead26
38 changed files with 168 additions and 148 deletions

View File

@@ -164,7 +164,7 @@ void QmlProfilerEngine::QmlProfilerEnginePrivate::launchperfmonitor()
m_launcher.start(ProjectExplorer::ApplicationLauncher::Gui, m_params.debuggee, arguments);
}
void QmlProfilerEngine::logApplicationMessage(const QString &msg, ProjectExplorer::OutputFormat /*format*/)
void QmlProfilerEngine::logApplicationMessage(const QString &msg, Utils::OutputFormat /*format*/)
{
qDebug() << "app: " << msg;
}

View File

@@ -35,7 +35,7 @@
#define QMLPROFILERENGINE_H
#include <analyzerbase/ianalyzerengine.h>
#include <projectexplorer/outputformat.h>
#include <utils/outputformat.h>
namespace QmlProfiler {
namespace Internal {
@@ -63,7 +63,7 @@ private slots:
void setFetchingData(bool);
void dataReceived();
void finishProcess();
void logApplicationMessage(const QString &msg, ProjectExplorer::OutputFormat format);
void logApplicationMessage(const QString &msg, Utils::OutputFormat format);
private:
class QmlProfilerEnginePrivate;