summaryrefslogtreecommitdiff
path: root/plugins/qmlprofilerextension/pixmapcachemodel.cpp
diff options
context:
space:
mode:
authorChristiaan Janssen <christiaan.janssen@digia.com>2013-07-10 16:47:16 +0200
committerKai Koehne <kai.koehne@digia.com>2013-07-11 15:12:51 +0300
commit832e2b8d39628c54e1b6f28333b8c6cd649fdb61 (patch)
treeeb0c662bc3479fa3e033c99773190e5126638421 /plugins/qmlprofilerextension/pixmapcachemodel.cpp
parenta90a841d4238ad979689649d6ff29ca936becf22 (diff)
downloadqt-creator-832e2b8d39628c54e1b6f28333b8c6cd649fdb61.tar.gz
QmlProfiler: link views when selecting event
Change-Id: I4dbb09d459e033fae2fceb24ab5e4b0e7de38179 Reviewed-by: Kai Koehne <kai.koehne@digia.com>
Diffstat (limited to 'plugins/qmlprofilerextension/pixmapcachemodel.cpp')
-rw-r--r--plugins/qmlprofilerextension/pixmapcachemodel.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/plugins/qmlprofilerextension/pixmapcachemodel.cpp b/plugins/qmlprofilerextension/pixmapcachemodel.cpp
index 496ad94884..db8cd938be 100644
--- a/plugins/qmlprofilerextension/pixmapcachemodel.cpp
+++ b/plugins/qmlprofilerextension/pixmapcachemodel.cpp
@@ -348,6 +348,16 @@ const QVariantMap PixmapCacheModel::getEventLocation(int /*index*/) const
return map;
}
+int PixmapCacheModel::getEventIdForHash(const QString &/*eventHash*/) const
+{
+ return -1;
+}
+
+int PixmapCacheModel::getEventIdForLocation(const QString &/*filename*/, int /*line*/, int /*column*/) const
+{
+ return -1;
+}
+
bool compareStartTimes(const PixmapCacheModel::PixmapCacheEvent&t1, const PixmapCacheModel::PixmapCacheEvent &t2)
{
return t1.startTime < t2.startTime;