summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@digia.com>2014-04-09 16:33:00 +0200
committerKai Koehne <kai.koehne@digia.com>2014-04-10 12:27:22 +0300
commitb69bedbf0713a0fb1b42a78215b7feb8cb7b7982 (patch)
tree762f143b2e8e11d79d34167f2c87289c048b354f
parent9b92cf8ed1ae6fa5e3c3edd94d8a9153eebb31e6 (diff)
downloadqt-creator-qp-3.1.tar.gz
No need to qualify calls to SortedTimelineModel::clear()qp-v3.1.0qp-3.1
Task-number: QTCREATORBUG-12010 Change-Id: I22bc4525329f50359e6857c595fe686af901711e Reviewed-by: Kai Koehne <kai.koehne@digia.com>
-rw-r--r--plugins/qmlprofilerextension/pixmapcachemodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/qmlprofilerextension/pixmapcachemodel.cpp b/plugins/qmlprofilerextension/pixmapcachemodel.cpp
index e3c65c68f7..f329963449 100644
--- a/plugins/qmlprofilerextension/pixmapcachemodel.cpp
+++ b/plugins/qmlprofilerextension/pixmapcachemodel.cpp
@@ -489,7 +489,7 @@ void PixmapCacheModel::loadData()
void PixmapCacheModel::clear()
{
Q_D(PixmapCacheModel);
- d->SortedTimelineModel::clear();
+ d->clear();
d->pixmaps.clear();
d->collapsedRowCount = 1;
d->maxCacheSize = 1;