QmlProfiler: Namespace fixes

Use own namespace (QmlProfiler) instead of Analyzer.
This commit is contained in:
Kai Koehne
2011-03-25 09:21:00 +01:00
parent 76a5abf602
commit ac61c9a918
10 changed files with 48 additions and 27 deletions

View File

@@ -1,13 +1,13 @@
#ifndef QMLPROFILERTOOL_H
#define QMLPROFILERTOOL_H
#include "ianalyzertool.h"
#include "ianalyzerengine.h"
#include <analyzerbase/ianalyzertool.h>
#include <analyzerbase/ianalyzerengine.h>
namespace Analyzer {
namespace QmlProfiler {
namespace Internal {
class QmlProfilerTool : public IAnalyzerTool
class QmlProfilerTool : public Analyzer::IAnalyzerTool
{
Q_OBJECT
public:
@@ -20,9 +20,9 @@ public:
void initialize(ExtensionSystem::IPlugin *plugin);
IAnalyzerEngine *createEngine(ProjectExplorer::RunConfiguration *runConfiguration);
Analyzer::IAnalyzerEngine *createEngine(ProjectExplorer::RunConfiguration *runConfiguration);
IAnalyzerOutputPaneAdapter *outputPaneAdapter();
Analyzer::IAnalyzerOutputPaneAdapter *outputPaneAdapter();
QWidget *createToolBarWidget();
QWidget *createTimeLineWidget();
@@ -48,7 +48,7 @@ private:
QmlProfilerToolPrivate *d;
};
}
}
} // namespace Internal
} // namespace QmlProfiler
#endif // QMLPROFILERTOOL_H