aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmlprofiler/qmlprofilertraceview.h
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@digia.com>2014-06-13 16:34:30 +0200
committerUlf Hermann <ulf.hermann@digia.com>2014-06-17 16:26:06 +0200
commitfea6580c82936cbeec69038f9184f30944e659c8 (patch)
treee93922d57619b0e01d198c59365ab45d08a91bf3 /src/plugins/qmlprofiler/qmlprofilertraceview.h
parentb0d79542b858e0089b42f7b8c810d476a4a6b80e (diff)
QmlProfiler: get rid of hash strings
Using strings to identify equal events is terribly inefficient. By keeping a global list of event types we can assign each event a numerical type index and use that to compare them. We can also avoid excessive string copying and data duplication by referring to the global type list where event type information is needed. Task-number: QTCREATORBUG-11823 Change-Id: I837bd5d0f5395b0003002ef8dd278fb27679c65d Reviewed-by: Kai Koehne <kai.koehne@digia.com>
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilertraceview.h')
-rw-r--r--src/plugins/qmlprofiler/qmlprofilertraceview.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilertraceview.h b/src/plugins/qmlprofiler/qmlprofilertraceview.h
index b00dd497d30..de61820cc53 100644
--- a/src/plugins/qmlprofiler/qmlprofilertraceview.h
+++ b/src/plugins/qmlprofiler/qmlprofilertraceview.h
@@ -100,7 +100,7 @@ public:
public slots:
void clear();
- void selectByHash(const QString &eventHash);
+ void selectByTypeIndex(int typeIndex);
void selectBySourceLocation(const QString &filename, int line, int column);
private slots: