Adapt to unified data models in creator

Change-Id: I08991a79d5cc70bb374ecaa8d5b707962403cee7
Reviewed-by: Kai Koehne <kai.koehne@digia.com>
This commit is contained in:
Ulf Hermann
2014-02-18 18:34:43 +01:00
parent b1bc443f5c
commit c55dbf2e7a
4 changed files with 8 additions and 8 deletions

View File

@@ -155,7 +155,7 @@ void PixmapCacheModel::PixmapCacheModelPrivate::addVP(QVariantList &l, QString l
{
if (time > 0) {
QVariantMap res;
res.insert(label, QVariant(QmlProfilerSimpleModel::formatTime(time)));
res.insert(label, QVariant(QmlProfilerBaseModel::formatTime(time)));
l << res;
}
}
@@ -207,7 +207,7 @@ void PixmapCacheModel::loadData()
{
Q_D(PixmapCacheModel);
clear();
QmlProfilerSimpleModel *simpleModel = d->modelManager->simpleModel();
QmlProfilerDataModel *simpleModel = d->modelManager->qmlModel();
if (simpleModel->isEmpty())
return;
@@ -216,7 +216,7 @@ void PixmapCacheModel::loadData()
QVector < int > pixmapStartPoints;
QVector < int > pixmapCachePoints;
foreach (const QmlProfilerSimpleModel::QmlEventData &event, simpleModel->getEvents()) {
foreach (const QmlProfilerDataModel::QmlEventData &event, simpleModel->getEvents()) {
if (!eventAccepted(event))
continue;

View File

@@ -21,7 +21,7 @@
#include "qmlprofiler/qmlprofilertimelinemodelproxy.h"
#include "qmlprofiler/singlecategorytimelinemodel.h"
#include "qmlprofiler/qmlprofilersimplemodel.h"
#include "qmlprofiler/qmlprofilerdatamodel.h"
#include <QStringList>
#include <QColor>

View File

@@ -141,7 +141,7 @@ void SceneGraphTimelineModel::SceneGraphTimelineModelPrivate::addVP(QVariantList
{
if (time > 0) {
QVariantMap res;
res.insert(label, QVariant(QmlProfilerSimpleModel::formatTime(time)));
res.insert(label, QVariant(QmlProfilerBaseModel::formatTime(time)));
l << res;
}
}
@@ -195,14 +195,14 @@ void SceneGraphTimelineModel::loadData()
{
Q_D(SceneGraphTimelineModel);
clear();
QmlProfilerSimpleModel *simpleModel = d->modelManager->simpleModel();
QmlProfilerDataModel *simpleModel = d->modelManager->qmlModel();
if (simpleModel->isEmpty())
return;
int lastRenderEvent = -1;
// combine the data of several eventtypes into two rows
foreach (const QmlProfilerSimpleModel::QmlEventData &event, simpleModel->getEvents()) {
foreach (const QmlProfilerDataModel::QmlEventData &event, simpleModel->getEvents()) {
if (!eventAccepted(event))
continue;

View File

@@ -21,7 +21,7 @@
#include "qmlprofiler/singlecategorytimelinemodel.h"
#include "qmlprofiler/qmlprofilermodelmanager.h"
#include "qmlprofiler/qmlprofilersimplemodel.h"
#include "qmlprofiler/qmlprofilerdatamodel.h"
#include <QStringList>
#include <QColor>