forked from qt-creator/qt-creator
QmlProfiler: Modernize
modernize-* Change-Id: Ibdf9c0ae91bf8a622facc7f323112b550f532f15 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
This commit is contained in:
@@ -45,15 +45,10 @@ class QmlProfilerRangeModel : public QmlProfilerTimelineModel
|
||||
public:
|
||||
|
||||
struct Item {
|
||||
Item() :
|
||||
displayRowExpanded(1),
|
||||
displayRowCollapsed(Constants::QML_MIN_LEVEL),
|
||||
bindingLoopHead(-1) {}
|
||||
|
||||
// not-expanded, per type
|
||||
int displayRowExpanded;
|
||||
int displayRowCollapsed;
|
||||
int bindingLoopHead;
|
||||
int displayRowExpanded = 1;
|
||||
int displayRowCollapsed = Constants::QML_MIN_LEVEL;
|
||||
int bindingLoopHead = -1;
|
||||
};
|
||||
|
||||
QmlProfilerRangeModel(QmlProfilerModelManager *manager, RangeType range,
|
||||
|
||||
Reference in New Issue
Block a user