aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmlprofiler/qmlprofilermodelmanager.h
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2016-12-29 15:02:06 +0100
committerUlf Hermann <ulf.hermann@qt.io>2017-02-24 11:55:53 +0000
commitc84f650fb2019df63e83316d14a7b97cadcdfa86 (patch)
tree18dcce0c54aaa4abaf0114436c4aed4049f578e7 /src/plugins/qmlprofiler/qmlprofilermodelmanager.h
parent78daf47a257a498cffc67cbff6820b5b93dba92e (diff)
QmlProfiler: Integrate QmlProfilerDataModel into model manager
There is no need to keep them separate as the data model is not accessed from the outside anymore. This removes a lot of indirection. Change-Id: I91da4dfa816295300c8cfcca22430d5c5b3298c0 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilermodelmanager.h')
-rw-r--r--src/plugins/qmlprofiler/qmlprofilermodelmanager.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilermodelmanager.h b/src/plugins/qmlprofiler/qmlprofilermodelmanager.h
index d1ea5a01a4b..91fc6b278cb 100644
--- a/src/plugins/qmlprofiler/qmlprofilermodelmanager.h
+++ b/src/plugins/qmlprofiler/qmlprofilermodelmanager.h
@@ -115,7 +115,7 @@ public:
void addEventType(const QmlEventType &type);
const QVector<QmlEventType> &eventTypes() const;
- bool replayEvents(qint64 startTime, qint64 endTime, EventLoader loader) const;
+ bool replayEvents(qint64 rangeStart, qint64 rangeEnd, EventLoader loader) const;
quint64 availableFeatures() const;
quint64 visibleFeatures() const;
@@ -155,6 +155,7 @@ public slots:
private:
void setState(State state);
+ void detailsChanged(int typeId, const QString &newString);
private:
class QmlProfilerModelManagerPrivate;