aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2016-05-10 13:26:39 +0200
committerUlf Hermann <ulf.hermann@qt.io>2016-05-23 12:32:06 +0000
commitd6d69b811a1a09eb54b836c8c709ea97ee61ec58 (patch)
treec4e0afdbe6054b2208663c8841c71db81862f268 /src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp
parent0f513bc91e2fbea628455c625d372b9fd99de338 (diff)
QmlProfiler: Rename QmlProfilerDataModel::addEvent()
We will get another variant, without type. Change-Id: I06bd47955ef909b2f467425bb9ad8c8b3e3dce27 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp')
-rw-r--r--src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp b/src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp
index c5ab27ccf55..6277ea81d4b 100644
--- a/src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp
+++ b/src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp
@@ -262,7 +262,7 @@ const char *QmlProfilerModelManager::featureName(ProfileFeature feature)
void QmlProfilerModelManager::addQmlEvent(const QmlEvent &event, const QmlEventType &type)
{
QTC_ASSERT(state() == AcquiringData, return);
- d->model->addEvent(event, type);
+ d->model->addTypedEvent(event, type);
}
void QmlProfilerModelManager::acquiringDone()