aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.cpp
diff options
context:
space:
mode:
authorUlf Hermann <[email protected]>2018-04-19 13:10:49 +0200
committerUlf Hermann <[email protected]>2018-04-19 11:21:59 +0000
commit08ca10de810f249986cd35e2c606a719d5ef589c (patch)
treefff975a0d00cc1552b2c887a9ca186aa3e2f98cf /src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.cpp
parent6e4ae817c2b5b8d732124bddbd34977f332c5d53 (diff)
QmlProfiler: Rename specific replayEvents to replayQmlEvents
Some compilers cannot discern the two replayEvents methods. Change-Id: Ide4a893ff3976cb081fbbceefacafb6226f0a73f Reviewed-by: Thomas Hartmann <[email protected]>
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.cpp')
-rw-r--r--src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.cpp b/src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.cpp
index 56f0920fac4..bb41405809d 100644
--- a/src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.cpp
+++ b/src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.cpp
@@ -101,11 +101,11 @@ void QmlProfilerStatisticsModel::restrictToFeatures(quint64 features)
clear();
QFutureInterface<void> future;
- m_modelManager->replayEvents(m_modelManager->traceStart(), m_modelManager->traceEnd(),
- std::bind(&QmlProfilerStatisticsModel::loadEvent, this,
- std::placeholders::_1, std::placeholders::_2),
- std::bind(&QmlProfilerStatisticsModel::beginResetModel, this),
- [this]() {
+ m_modelManager->replayQmlEvents(m_modelManager->traceStart(), m_modelManager->traceEnd(),
+ std::bind(&QmlProfilerStatisticsModel::loadEvent, this,
+ std::placeholders::_1, std::placeholders::_2),
+ std::bind(&QmlProfilerStatisticsModel::beginResetModel, this),
+ [this]() {
finalize();
notesChanged(QmlProfilerStatisticsModel::s_invalidTypeId); // Reload notes
}, [this](const QString &message) {