aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qquicklistmodelworkeragent_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/qquicklistmodelworkeragent_p.h')
-rw-r--r--src/qml/qml/qquicklistmodelworkeragent_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/qml/qquicklistmodelworkeragent_p.h b/src/qml/qml/qquicklistmodelworkeragent_p.h
index 24198b020c..bd805daced 100644
--- a/src/qml/qml/qquicklistmodelworkeragent_p.h
+++ b/src/qml/qml/qquicklistmodelworkeragent_p.h
@@ -122,7 +122,7 @@ private:
int index; // Inserted/Removed/Moved/Changed
int count; // Inserted/Removed/Moved/Changed
int to; // Moved
- QList<int> roles;
+ QVector<int> roles;
};
struct Data
@@ -133,7 +133,7 @@ private:
void insertChange(int uid, int index, int count);
void removeChange(int uid, int index, int count);
void moveChange(int uid, int index, int count, int to);
- void changedChange(int uid, int index, int count, const QList<int> &roles);
+ void changedChange(int uid, int index, int count, const QVector<int> &roles);
};
Data data;