aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristiaan Janssen <christiaan.janssen@nokia.com>2011-08-04 15:56:09 +0200
committerChristiaan Janssen <christiaan.janssen@nokia.com>2011-08-04 15:59:45 +0200
commit77f01763687ae2d4da643cd1cdda2d77ab2d97b8 (patch)
tree9c22ce059240a820dada4afdcdb1a3cddf277afe /src
parentdc8a0fe42ed538594cce7643641c98c55e80d1d1 (diff)
QmlProfiler: fixed sorting of "event type" field
Change-Id: Ibaa321c65f44c4ca9c87bb312659173bb2f26d64 Reviewed-on: http://codereview.qt.nokia.com/2634 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/qmlprofiler/qmlprofilereventview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilereventview.cpp b/src/plugins/qmlprofiler/qmlprofilereventview.cpp
index 62c990716ac..74dd5a171b7 100644
--- a/src/plugins/qmlprofiler/qmlprofilereventview.cpp
+++ b/src/plugins/qmlprofiler/qmlprofilereventview.cpp
@@ -448,7 +448,7 @@ void QmlProfilerEventsView::QmlProfilerEventsViewPrivate::buildModelFromList( co
if (m_fieldShown[Type]) {
newRow << new EventsViewItem(nameForType(binding->eventType));
- newRow.last()->setData(QVariant(binding->eventType));
+ newRow.last()->setData(QVariant(nameForType(binding->eventType)));
}
if (m_fieldShown[Percent]) {