forked from qt-creator/qt-creator
QmlProfiler: Initialize fields in PixmapCacheItem
Change-Id: I4ab27b6a122a1a77fad23dfa1a1a8f825fff0765 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
This commit is contained in:
@@ -87,12 +87,12 @@ public:
|
||||
};
|
||||
|
||||
struct PixmapCacheItem {
|
||||
int typeId;
|
||||
PixmapEventType pixmapEventType;
|
||||
int urlIndex;
|
||||
int sizeIndex;
|
||||
int rowNumberCollapsed;
|
||||
qint64 cacheSize;
|
||||
int typeId = -1;
|
||||
PixmapEventType pixmapEventType = MaximumPixmapEventType;
|
||||
int urlIndex = -1;
|
||||
int sizeIndex = -1;
|
||||
int rowNumberCollapsed = -1;
|
||||
qint64 cacheSize = -1;
|
||||
};
|
||||
|
||||
PixmapCacheModel(QmlProfilerModelManager *manager, QObject *parent = 0);
|
||||
|
Reference in New Issue
Block a user