forked from qt-creator/qt-creator
QmlProfiler: Fix type for restrictToFeatures
Change-Id: Ifdc75c570faf4ae6784decf80a530c0e30d44e1d Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
@@ -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) {
|
||||
|
||||
@@ -66,7 +66,7 @@ public:
|
||||
QmlProfilerStatisticsModel(QmlProfilerModelManager *modelManager, QObject *parent = 0);
|
||||
~QmlProfilerStatisticsModel();
|
||||
|
||||
void restrictToFeatures(qint64 features);
|
||||
void restrictToFeatures(quint64 features);
|
||||
|
||||
const QHash<int, QmlEventStats> &getData() const;
|
||||
const QVector<QmlEventType> &getTypes() const;
|
||||
|
||||
Reference in New Issue
Block a user