diff options
author | Ulf Hermann <[email protected]> | 2018-03-23 09:51:44 +0100 |
---|---|---|
committer | Ulf Hermann <[email protected]> | 2018-04-12 05:53:30 +0000 |
commit | 06aa4c573e47128e6bbb451f9788112b8ba66446 (patch) | |
tree | ca15b5d4d215e0a9b3511c018ee3069bd7694516 /src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.cpp | |
parent | 1732b6f88237f2ff7422fe2fe1bcb46134dd1980 (diff) |
QmlProfiler: Fix type for restrictToFeatures
Change-Id: Ifdc75c570faf4ae6784decf80a530c0e30d44e1d
Reviewed-by: Tobias Hunger <[email protected]>
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.cpp')
-rw-r--r-- | src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.cpp b/src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.cpp index c43a3022822..d691f992cf7 100644 --- a/src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.cpp +++ b/src/plugins/qmlprofiler/qmlprofilerstatisticsmodel.cpp @@ -98,7 +98,7 @@ QmlProfilerStatisticsModel::~QmlProfilerStatisticsModel() delete d; } -void QmlProfilerStatisticsModel::restrictToFeatures(qint64 features) +void QmlProfilerStatisticsModel::restrictToFeatures(quint64 features) { bool didChange = false; for (int i = 0; i < MaximumRangeType; ++i) { |