diff options
author | Ulf Hermann <[email protected]> | 2016-04-26 11:50:59 +0200 |
---|---|---|
committer | Ulf Hermann <[email protected]> | 2016-05-04 09:49:32 +0000 |
commit | a9555371327b31a294109b42d954371105ccee9b (patch) | |
tree | f1778f3db29710d74841419e94991741fca56d60 /src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.h | |
parent | 08f807a13465b8664cafaa4206076d9d083a6e9a (diff) |
QmlProfiler: Fix the naming scheme for events and event types
Move them out of the QmlProfilerDataModel class, drop the "Data"
suffix, and rename symbols that refer to them in order to call them by
their names.
Change-Id: I41151359921b325edb79111371083c4185bd148b
Reviewed-by: Christian Kandeler <[email protected]>
Reviewed-by: Joerg Bornemann <[email protected]>
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.h')
-rw-r--r-- | src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.h b/src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.h index 9ac8fe3e81f..c81c074113d 100644 --- a/src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.h +++ b/src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.h @@ -65,7 +65,7 @@ public: bool eventTypeAccepted(RangeType) const; const QHash<int, QmlEventStats> &getData() const; - const QVector<QmlProfilerDataModel::QmlEventTypeData> &getTypes() const; + const QVector<QmlEventType> &getTypes() const; const QHash<int, QString> &getNotes() const; int count() const; @@ -112,7 +112,7 @@ public: void clear(); const QmlStatisticsRelativesMap &getData(int typeId) const; - const QVector<QmlProfilerDataModel::QmlEventTypeData> &getTypes() const; + const QVector<QmlEventType> &getTypes() const; protected: virtual void loadData() = 0; |